Crates.io | rlist |
lib.rs | rlist |
version | 0.7.0 |
source | src |
created_at | 2023-01-05 23:17:32.953309 |
updated_at | 2023-01-13 21:59:43.311382 |
description | Reading list manager cli |
homepage | |
repository | https://github.com/fedfontana/rlist |
max_upload_size | |
id | 751879 |
size | 72,545 |
Reading list manager for the terminal.
cargo install rlist
Add entries with
rlist add <name> <title> [-a <author>] [-t <topic1> <topic2> ...]
Query your reading list:
rlist ls -l
rlist query <name> # filter results by name
rlist ls --sort-by url --from 2023-01-10
If you need to filter the results in other ways, please run rlist query --help
Edit entries with
rlist edit <old name> <new name> -a <new author> -t <new topics>
rlist edit <old name> --clear topics
Delete entries:
rlist delete <name>
rlist delete -t <topic1> <topic2>
For more info run rlist <subcommand> --help/-h
If you want to change the rlist database location (default is $HOME/rlist/rlist.sqlite
), run rlist --db-file <new path>
, or add
db_file: <new path>
to your rlist.yml
, located by default in $HOME/.config/rlist.yml
(if you want to run rlist with a different config, you can always run rlist --config <config path> <subcommand>
)