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.jarDukejava -jar duke.jar to launch the programDukehelp: 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 softwarehelpFormat: help
todoFormat: todo [TaskName]
deadlineFormat: deadline [TaskName] /by [Deadline]
eventFormat: event [TaskName] /at [Timeslot]
doneFormat: done [Task#]
deleteFormat: delete [Task#]
findFormat: find [Keyword]
listFormat: list
byeFormat: 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 bookdeadline [TaskName] /by [Deadline]
e.g. deadline return book /by Sundayevent [TaskName] /at [Timeslot]
e.g. event project meeting /at Monday 2-4pmdone [Task#]
e.g. done 3delete [Task#]
e.g. delete 2find [Keyword]
e.g. find booklisthelpbye