YATL is Yet Another Todo List that helps a person to keep track of various things.
YATL.jar
here.todo
Create a simple todo task with a description.
Format: todo TASK
Example:
todo Buy Maggi
Buy Maggi
.
event
Create a event task with a description, start time, and date.
Format: event TASK /at START_TIME DATE
START_TIME
: HH:mm
DATE
: dd/MM/yyyy
Example:
event Take Temperature /at 14:00 29/2/2020
Take Temperature
. Set the start time to 14:00
and date to 29/02/2020
.
deadline
Create a deadline task with a description, end time, and date.
Format: deadline TASK /by END_TIME DATE
END_TIME
: HH:mm
DATE
: dd/MM/yyyy
Example:
deadline CS2107 quiz /by 23:59 20/2/2020
CS2107 quiz
. Set the end time to 23:59
and date to 20/02/2020
.
list
Lists all your added tasks.
Format: list
find
Finds the tasks have that name that contain any of the given keywords. Keywords are not matched exactly, minor typos will still yield results.
Format: find KEYWORD [MORE_KEYWORDS]
Examples:
find magi
magi
.
find magi quiz temparature
magi
, buy
, or temparature
.
done
Mark a task as done.
Format: done INDEX
INDEX
: Index number of a task shown when running the list
command.Example:
done 1
1
as done.
delete
Delete a task.
Format: delete INDEX
INDEX
: Index number of a task shown when running the list
command.Example:
delete 1
1
.
bye
Close the program.
Format: bye