git clone https://carlosdanielmaturano/crabdo
cd crabdo
cargo run <OPTION>
Or build a standalone binary
cargo build --release
./target/release/crabdo
if you type a unknown a command or run with the "help" option, the program will display some help information
l | list => list the todos in the current directory
n | new <TITLE> => create a new todo with the given title
c | complete <ID> => mark the todo with the given id as completed
u | uncomplete <ID> => mark the todo with the given id as uncompleted
d | delete <ID> => delete the todo with the given id