Easily make lists, backed up with a SQLite database
```bash
favlist new Movies ~Title Year@int
favlist add Movies -c Title "The Curse of the Cursed Curse" -c Year 2006
favlist list Movies -f Title Curse --filter Year 2006 --yaml
favlist edit Movies 1 -c Year 2005
favlist sub Movies 1
``
- Create a new list with
favlist new
- Delete a list with
favlist rem
- Add a new row to the list with
favlist add
- Subtract a row from the list with
favlist sub
- Edit values in a row with
favlist edit
- Print values of list with
favlist list`
```bash
cargo build --release # Executable will be in ./target/release
cargo install --path . ```