Usage¶
Cmdline options¶
Usage: readit [OPTIONS] [INSERT]...
Readit - Command-line bookmark manager tool.
Options:
-a, --add TEXT... Add URLs with space-separated
-t, --tag TEXT... Add Tag with space-separated URL
-d, --delete TEXT Remove a URL of particular ID
-c, --clear TEXT... Clear bookmarks
-u, --update TEXT... Update a URL for specific ID
-s, --search TEXT Search all bookmarks by Tag
-v, --view TEXT... Show bookmarks
-o, --openurl TEXT Open URL in Browser
-e, --export TEXT... Export URLs to csv file
-tl, --taglist TEXT Show all Tags available in database
-V, --version Check latest version
--help Show this message and exit.
Examples¶
- Bookmark multiple URLs:
$ readit url1 url2 ...
or
$ readit --add url1 url2 ...
or
$ readit -a url1 url2 ...
- View all available bookmarks:
$ readit -v
or
$ readit --view
- Update a bookmark using its ID:
$ readit -u url_id url
or
$ readit --update url_id url
- Delete a bookmarked URL using its ID:
$ readit -d url_id
or
$ readit --delete url_id
- Clear all the bookmarks:
$ readit -c
or
$ readit --clear
- Bookmark URL along with TAG:
$ readit -t tag_name url
or
$ readit --tag tag_name url
- Search and Display all bookmarks using the TAG:
$ readit -s tag_name
or
$ readit --search tag_name
- Open URL in the Browser using specific ID:
$ readit -o urlid
or
$ readit --openurl urlid
- Export URLs to CSV file:
$ readit -e
or
$ readit --export
- Show all Tags available in the database:
$ readit -tl
or
$ readit --taglist