Your turn!
Following along with the provided code is a great way to learn through practice.
A better way is by challenging yourself to achieve tasks. Hence, I challenge you to improve the Bookmarkr application by adding the following features.
Task #1 – Delete an existing bookmark
The syntax is as follows:
$ bookmarkr link remove --name <name>
It can also be as follows:
$ bookmarkr link remove -n <name>
If the requested link name does not exist, the application should display a warning message to the user. Otherwise, the application should delete that bookmark and display a success message to the user.
Task #2 – Update an existing bookmark
The syntax is as follows:
$ bookmarkr link update --name <name> --url <url>
It can also be as follows:
$ bookmarkr link update -n <name> -u <url>
If the requested link name does not exist, the application should display an error message to the user and invite them...