- Maintain a list of Tasks, Deadlines and Events.
- View your list at any time with a simple command
list
. - Mark each item as Done or Not Done.
- Delete obsolete tasks.
- Download the latest Chad version from here.
- Open your Terminal/Command Prompt.
- Type
cd Downloads
(or wherever thechad.jar
file is stored). - Type in
java -jar chad.jar
. - Type in commands to use Chad.
- Enjoy!
Lists down all current tasks saved by Chad.
- T, D and E represent Todo, Deadline and Event tasks respectively.
[ ]
and[X]
show whether a task isNot Done
orDone
, respectively.
Adds a new Todo task to your list.
Adds a new Deadline task to your list.
- The name should be followed by a
/by
keyword. - The due date should come after the
by
, and be in the formatYYYY-MM-DD
.
Adds a new Event to your list.
- The name should be followed by a
/from
keyword. - The start time should come after the
/from
keyword, followed by/to
. - The end time should come after the
/to
keyoword. - Start and End times do not have any format constraints.
Marks the task at that serial number as done.
- Task numbers start from 1, and follow the ordering shown by the
list
command.
Marks the task at that serial number as NOT done.
- Task numbers start from 1, and follow the ordering shown by the
list
command.
Permanently deletes the task at that serial number from the list.
- Task numbers start from 1, and follow the ordering shown by the
list
command. - Deleted tasks CANNOT be recovered.
Searches for any task that contains the search phrase.
- Search is CASE-SENSITIVE.
laundry
will NOT match with a task namedDo Laundry
.
Saves the current task list on your computer, and exits Chad. Tasks will be retrieved the next time you open Chad.
- You can also exit by clicking the [X] button on the Chad window. Don't worry, Chad will save your tasks no matter what!