Jake is a app for task management and optimised for user who prefers command line interface.
jake.jar from herejake.jar is located, and run the command java -jar jake.jar
Please note that <> denotes a required field, exclusive of the brackets.
todoAdd a todo task to the task list.
Format: todo <DESCRIPTION>
deadlineAdd a deadline task to the task list.
Format: deadline <DESCRIPTION> /by <DATE>
<Date> Format: YYYY-MM-DD HH:MM, eg 2021-09-17 23:59
eventAdd an event task to the task list.
Format: event <DESCRIPTION> /at <DATE>
<Date> Format: YYYY-MM-DD HH:MM, eg 2021-09-17 23:59
List all tasks in the task list.
Format: list
markMark a task as done.
Format: mark <INDEX>
<INDEX> refers to the index number shown in the displayed task list, ie starting from 1.
unmarkUnmark a task as done.
Format: unmark <INDEX>
<INDEX> refers to the index number shown in the displayed task list, ie starting from 1.
Delete a task from the task list.
Format: delete <INDEX>
<INDEX> refers to the index number shown in the displayed task list, ie starting from 1.
Find tasks that contain the keyword.
Format: find <KEYWORD>
<KEYWORD> is case-sensitive, and is referred to the description of the task. See Add Task for more information about description.
| Command | Fomat | Example |
|---|---|---|
| Add Task | todo <DESCRIPTION> deadline <DESCRIPTION> /by <DATE> event <DESCRIPTION> /from <DATE> /to <DATE> |
todo read book deadline homework1 /by 2021-09-17 23:59 event party /from 2021-09-18 18:00 /to 2021-099-18 23:00 |
| List | list |
list |
| Mark | mark <INDEX> unmark <INDEX> |
mark 1 unmark 1 |
| Delete | delete <INDEX> |
delete 1 |
| Find | find <KEYWORD> |
find book |