botbot is a desktop app for managing tasks.
botbot.jar
.botbot.jar
to the folder you wish to use as the home folder for botbot.botbot.jar
to start the app.UPPER_CASE
are fields to be specified by the user.
todo DESCRIPTION
: The user should specify a DESCRIPTION
. A sample command is todo send
mail
.[SQUARE_BRACKETS]
are optional fields.
event DESCRIPTION /at DATE [TIME]
: The user can specify a DATE
with or without a TIME
.deadline
Adds a deadline to the task list.
Format: deadline DESCRIPTION /by DATE [TIME]
DATE
must follow the D-M-YYYY
format.TIME
must follow the HHMM
format.Examples:
deadline call service centre /by 20-9-2020 1800
deadline buy gifts /by 1-12-2020
todo
Adds a to-do to the task list.
Format: todo DESCRIPTION
Example: todo send mail
event
Adds an event to the task list.
Format: event DESCRIPTION /at DATE [TIME]
DATE
must follow the D-M-YYYY
format.TIME
must follow the HHMM
format.Examples:
event brunch /at 1-10-2020 1100
event tammy's party /at 16-9-2020
delete
Deletes a task from the task list.
Format: delete INDEX
INDEX
on the task list.Example: delete 3
edit
Edits a task on the task list.
Format: edit INDEX [/d DESCRIPTION] [/at DATE_OF_EVENT [TIME_OF_EVENT]] [/by DATE_OF_DEADLINE [TIME_OF_DEADLINE]]
INDEX
on the task list.DESCRIPTION
can be edited.DESCRIPTION
, DATE_OF_DEADLINE
and TIME_OF_DEADLINE
can be edited.DESCRIPTION
, DATE_OF_EVENT
and TIME_OF_EVENT
can be edited.DATE_OF_DEADLINE
and DATE_OF_EVENT
must follow the D-M-YYYY
format.TIME_OF_DEADLINE
and TIME_OF_EVENT
must follow the HHMM
format.Examples:
edit 2 /d call tammy /at 16-9-2020 0000
edits the description and time of the 2nd task on the task
list to call tammy
and 16-9-2020 0000
respectively.edit 5 /by 31-12-2020
edits the deadline of the 5th task on the task list to 31-12-2020
.done
Marks a task on the task list as done.
Format: done INDEX
INDEX
on the task list as done.Example: done 1
find
Searches for the specified keyphrase in the task list.
Format: find KEYPHRASE
Buy
will match buy
.buy milk
will not match buy cheese
.Example: find Buy coffee
returns buy Coffee
and Buy coffee and tea
.
list
Displays the task list.
Format: list
bye
Closes botbot.
Format: bye
botbot automatically saves your data in /data/botbot.txt
in the home folder for botbot after
every command that changes the data. There is no need to save manually.
Action | Format |
---|---|
Add |
deadline DESCRIPTION /by DATE [TIME] event DESCRIPTION /at DATE [TIME] todo DESCRIPTION
|
Delete | delete INDEX |
Edit | edit INDEX [/d DESCRIPTION] [/at DATE_OF_EVENT [TIME_OF_EVENT]] [/by DATE_OF_DEADLINE [TIME_OF_DEADLINE]] |
Exit | bye |
Mark as done | done INDEX |
Search | find KEYPHRASE |
View | list |