Duke is a task management system that can help you keep track of various tasks. It is a Command Line Interface(CLI).
11
or above installed in your computerduke.jar
Duke
java -jar duke.jar
to launch the programDuke
help
: show a simple user guidelist
: list all tasks in the task listtodo read book
: add a todo task called read book
into the task listdelete 3
: delete the 3rd task in the task listbye
: exit the softwarehelp
Format: help
todo
Format: todo [TaskName]
deadline
Format: deadline [TaskName] /by [Deadline]
event
Format: event [TaskName] /at [Timeslot]
done
Format: done [Task#]
delete
Format: delete [Task#]
find
Format: find [Keyword]
list
Format: list
bye
Format: bye
The task list is saved in the hard disk automatically after any command that changes the list and saved data will be loaded up when launching the program. There is no need to save or load data manually.
todo [TaskName]
e.g. todo read book
deadline [TaskName] /by [Deadline]
e.g. deadline return book /by Sunday
event [TaskName] /at [Timeslot]
e.g. event project meeting /at Monday 2-4pm
done [Task#]
e.g. done 3
delete [Task#]
e.g. delete 2
find [Keyword]
e.g. find book
list
help
bye