Duke is a task management system that can help you keep track of various tasks. It is a Command Line Interface(CLI).
- Ensure you have a Java
11
or above installed in your computer - Download the latest
duke.jar
- Copy the file to the folder you want to use as the working directory for your Duke
- Open Command Prompt(CMD) of your computer and direct to the working directory of
Duke
- Type the command
java -jar duke.jar
to launch the program - Type the command in CLI to manage your tasks in
Duke
- Some example commands you can try:
help
: show a simple user guidelist
: list all tasks in the task listtodo read book
: add a todo task calledread book
into the task listdelete 3
: delete the 3rd task in the task listbye
: exit the software
Format: help
Format: todo [TaskName]
Format: deadline [TaskName] /by [Deadline]
Format: event [TaskName] /at [Timeslot]
Format: done [Task#]
Format: delete [Task#]
Format: find [Keyword]
Format: list
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:
todo [TaskName]
e.g.todo read book
- deadline:
deadline [TaskName] /by [Deadline]
e.g.deadline return book /by Sunday
- event:
event [TaskName] /at [Timeslot]
e.g.event project meeting /at Monday 2-4pm
- done:
done [Task#]
e.g.done 3
- delete:
delete [Task#]
e.g.delete 2
- find:
find [Keyword]
e.g.find book
- list:
list
- help:
help
- bye:
bye