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

  1. Bookmark multiple URLs:
$ readit url1 url2 ...
or
$ readit --add url1 url2 ...
or
$ readit -a url1 url2 ...
  1. View all available bookmarks:
$ readit -v
or
$ readit --view
  1. Update a bookmark using its ID:
$ readit -u url_id url
or
$ readit --update url_id url
  1. Delete a bookmarked URL using its ID:
$ readit -d url_id
or
$ readit --delete url_id
  1. Clear all the bookmarks:
$ readit -c
or
$ readit --clear
  1. Bookmark URL along with TAG:
$ readit -t tag_name url
or
$ readit --tag tag_name url
  1. Search and Display all bookmarks using the TAG:
$ readit -s tag_name
or
$ readit --search tag_name
  1. Open URL in the Browser using specific ID:
$ readit -o urlid
or
$ readit --openurl urlid
  1. Export URLs to CSV file:
$ readit -e
or
$ readit --export
  1. Show all Tags available in the database:
$ readit -tl
or
$ readit --taglist