mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-03 15:40:17 +00:00
15 lines
266 B
Plaintext
15 lines
266 B
Plaintext
# Todo (Bash-Snippets)
|
|
# A simplistic commandline todo list
|
|
|
|
# Add a task to your todo list
|
|
todo -a This is an example task
|
|
|
|
# Print the current task list
|
|
todo -g
|
|
|
|
# Remove a single task from the list
|
|
todo -r [taskNumber]
|
|
|
|
# To clear all tasks
|
|
todo -c or todo clear
|