You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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