Crates.io | todo_cli |
lib.rs | todo_cli |
version | 0.1.0 |
source | src |
created_at | 2019-01-14 19:46:18.069065 |
updated_at | 2019-01-14 19:46:18.069065 |
description | A tool for todo list for your project |
homepage | https://github.com/JacobAndersson/journal_cli |
repository | https://github.com/JacobAndersson/journal_cli |
max_upload_size | |
id | 108557 |
size | 6,832 |
This is a simple command line tool for writing a todo list for your project
The tool is used for writing todo lists and the available flags and options is the following:
USAGE:
TODO [FLAGS] [OPTIONS]
FLAGS:
-d, --delete Deletes the TODO file, if you have used a custom path before you also need to pass that
-h, --help Prints help information
-s, --show Prints out the TODO list
-V, --version Prints version information
OPTIONS:
-r, --remove <index> Will delete a TODO item with a specific number [default: ]
-m, --message <message> The TODO item [default: ]
-p, --path <path> Path to the TODO file. It will create the file if it doesn't find it, however it can't
create a folder [default: ./todo.txt]
If you want to add an item to your todo list, use the following command:
todo_cli --message "TODO ITEM"
Because todo_cli is published to cartes.io you need to have Rust installed on your system to install the package.
cargo install todo_cli
Currently the only way to update todo_cli is by reinstalling it, which is done using the following command.
cargo install todo_cli--force