2 个稳定版本
2.0.0 | 2020 年 8 月 25 日 |
---|---|
1.0.0 | 2020 年 1 月 21 日 |
#8 in #important
37KB
856 代码行
favlist
轻松创建列表,并由 SQLite 数据库备份
用法
# create a new list of movies with an important (not-null) title and an integer year
favlist new Movies ~Title Year@int
# Add a new entry to the Movies list
favlist add Movies -c Title "The Curse of the Cursed Curse" -c Year 2006
# list movies with "Curse" in the title made in 2006 and print in YAML format
favlist list Movies -f Title Curse --filter Year 2006 --yaml
# Change the Year in row 1 of Movies
favlist edit Movies 1 -c Year 2005
# Remove row 1 from Movies
favlist sub Movies 1
# Launch the TUI
favlist
# Help
favlist --help
favlist [SUBCOMMAND] --help
- 使用
favlist new
创建新的列表 - 使用
favlist rem
删除列表 - 使用
favlist add
向列表中添加新行 - 使用
favlist sub
从列表中减去一行 - 使用
favlist edit
编辑行中的值 - 使用
favlist list
打印列表中的值
TUI
TUI 默认包含。如果您不想包含此功能,请在使用 cargo
安装/构建时传递 --no-default-features
标志。
目前,您不能使用 TUI 编辑任何数据,但可以查看数据。使用 <
和 >
在表格之间切换,并使用键盘上的 ↑
和 ↓
突出行。使用 ESC
退出 TUI。
安装
# Latest released version
cargo install favlist
# Don't want the TUI feature?
cargo install --no-default-features favlist
# Want to get notified about new releases?
cargo install favlist --features check-latest
依赖项
Linux
- libsqlite3-dev
依赖项
~32MB
~613K SLoC