You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Kasianov Nikolai Alekseevich
2b8f2a7e7e
|
1 year ago | |
---|---|---|
src | 1 year ago | |
.gitignore | 1 year ago | |
COPYING | 1 year ago | |
Makefile | 1 year ago | |
README.md | 1 year ago | |
install.sh | 1 year ago |
README.md
clido
Command Line Interface to DO program
clido helps to track and keep "to do" notes on the disk.
Compilation
Simply make
or as simply compile .c files together
Installation
If you're on Linux - sudo make install
or sudo ./install.sh
or if not simply move the binary to wherever you desire.
On Windows clido will look for a todo file in the current directory, on other platforms it will be /usr/local/share/clido (which is created and configured automatically via make install
or install.sh
)
Usage
clido [COMMAND]
Commands:
help -> Prints help message and exists
version -> Prints version information and exits
add [todo]... -> Writes a new TODO to a default TODO file
show -> Outputs current TODOs
show-done -> Outputs TODOs which were done previously
done [index]... -> Marks specified TODO(s) as done
todo-path [path] -> Specifies another path pointing to the todo file
Examples
clido add Do the cooking today
-> appends a new todo with given text to a todo fileclido show
-> prints current todosclido done 0 1
-> marks todos with indexes 0 and 1 as doneclido show-done
-> prints todos which are done at this point
License
GPLv3