A commnd line Bullet List tool
cargo install --locked bjournA simple journaling tool
USAGE:
bjourn [action] [args]
ACTIONS:
-a, --add, add [text]
Add a new entry with the given text
-h, --help, help
Print this help message
-l, --list, list [optional date]
List all entries for the given date, defaults to today
-r, --remove, remove [id]
Remove the entry with the given id
-v, --version, version
Print the version of bjourn
OPTIONS:
-o, --output [md, markdown, json]
Add a new bullet point to the list
bjourn add This is a new bullet pointPrint the help message
bjourn helpYou can view the day's bullet points by specifying the day or view today's bullet points without specifying a day.
bjournbjourn list 2025-01-01When piping to another command, the output is formatted as a simple list of bullet points
bjourn list 2025-01-01 | pbcopy
bjourn list | cat
* woke up and had breakfast
* added version 0.2.1 of bjournRemove a bullet point by specifying the id
bjourn remove beWLHOFjYou can specify the output format of the list command by using the -o or --output flag
bjourn list 2025-01-04 -o jsonDEBUG - Set to true to print debug messages
BJOURN_USAGE - Set to false to print the "usage" message when running bjourn with no arguments
Run:
cargo runRun with arguments:
cargo run -- add This is a new bullet pointDebug Mode
DEBUG=true cargo runcargo install --path .