2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-15 06:12:59 +00:00
cheat.sheets/sheets/todo
2021-06-08 20:42:25 +01:00

15 lines
268 B
Plaintext

# Todo (Bash-Snippets)
# A simplistic command line to-do 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