https://github.com/jogendra/bookmark-cli
CLI application to manage bookmarks.
https://github.com/jogendra/bookmark-cli
Last synced: 9 months ago
JSON representation
CLI application to manage bookmarks.
- Host: GitHub
- URL: https://github.com/jogendra/bookmark-cli
- Owner: jogendra
- License: apache-2.0
- Created: 2020-06-29T18:43:58.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-07-21T14:42:32.000Z (over 5 years ago)
- Last Synced: 2025-02-09T18:27:06.450Z (11 months ago)
- Language: Go
- Homepage: https://jogendra.github.io/building-command-line-tools-in-go
- Size: 38.1 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bookmark-cli
Command Line tool to manage all of your bookmarks at one place.
Also, source code for [https://jogendra.github.io/building-command-line-tools-in-go](https://jogendra.github.io/building-command-line-tools-in-go)

## Usage
Available Commands:
### insert
Add a new bookmark to bookmarks list
```bash
bookmark insert ""
```
### list
Display the list of all of your bookmarks
```bash
bookmark list
```
You can use `last` subcommand to display last most added bookmark
```bash
bookmark list last
```
### clearall
Clear all the bookmarks
```bash
bookmark clearall
```
### help
Help about any command
```bash
bookmark help
```
## License
This project is under **Apache License 2.0**. Please check [LICENSE](LICENSE) for more info.