Duke is a desktop app for managing tasks. It is catered towards individuals who enjoy working with a Command Line Interface (CLI). This app is especially useful for fast typists.
11
or above installed.Enter
.list
Shows a list of all the tasks added.
Format / Example of usage:
list
find
Returns with task(s) that contain the given keyword.
Format:
find [keyword]
Example of usage:
find test
todo
Adds a new todo task to the current list of tasks.
Format:
todo [taskname]
Example of usage:
todo read lecture notes
deadline
Adds a new deadline task to the current list of tasks.
Format:
deadline [taskname] /by [yyyy-mm-dd]
Example of usage:
deadline return book /by 2020-10-13
event
Adds a new event task to the current list of tasks.
Format:
event [taskname] /at [date, can be in any format]
Example of usage:
event 2103 meeting /at 15 sep, 8pm
doafter
Adds a new do after task to the current list of tasks.
Format:
doafter [taskname] /after [date, can be in any format]
Example of usage:
doafter study for test /after lecture tmr
done
Changes the completion status of a task to be done.
Format:
done [task number]
Example of usage:
done 5
delete
Deletes a task from the list.
Format:
delete [task number]
Example of usage:
delete 4
bye
Exits the app.
Format / Example of usage:
bye