IrohBot is an application built using Java used to manage tasks, via a Command Line Interface (CLI).
list
: Lists all tasks.todo Example
: Adds a task of type Todo with description “Example”.delete 2
: Deletes the second Task in your task list.bye
: Exits the app.todo TODO_NAME
, TODO_NAME is the parameter in this command.DD-mm-YY HHMM
where D represents the day, m represents the month, Y represents the year, H represents the hour and M represents the minute.todo
Adds a Todo task to your task list.
Format: todo TODO_NAME
Example:
todo Brush teeth
: Adds a task of type Todo with the description “Brush teeth”.deadline
Adds a Deadline task to your task list.
Format: deadline DEADLINE_NAME /by DATE_AND_TIME
Example:
deadline Do homework /by 20-12-2018 1200
: Adds a Task of type Deadline with description “Do homework” due 3rd October 2018 at 1200hrsevent
Adds an Event task to your task list.
Format: event EVENT_NAME /at DATE_AND_TIME
Example:
event House party /on 20-12-2020 1200
: Adds a Task of type Event with description “House party” on the 20 April 2020 at 2000hrslist
Shows a list of all your tasks.
Format: list
done
Marks a specified task from the task list as done.
Format: done INDEX
done
followed by an index of only 1 to 6 will work for a task list with 6 tasks.Example:
done 1
: Marks the first task in the task list as done.delete
Deletes a specified task from the task list.
Format: delete INDEX
delete
followed by an index of only 1 to 6 will work for a task list with 6 tasks.Example:
delete 1
: Deletes the 1st task in the task list.find
Find tasks with descriptions containing KEYWORD in the Task list.
Format: find KEYWORD
defeat
will match defeat Fire Lord
but not Defeat Fire Lord
Example:
find Avatar
: Returns a list of results of with that contain word “Avatar”bye
Exits IrohBot.
Format: bye
Ethan Noah Rozario