Organize with ease, accomplish with Ollie ☺ ! ️
Ollie ☺️ is your task manager app!
-l to list all taskstododeadlineevent-l-d-f.jar file here 👈🏼ollie.jar.java -jar ollie.jar
| Function | Command | Format | Example |
|---|---|---|---|
| Add a Todo task | todo |
todo <description> |
todo read book |
| Add a Deadline task | deadline |
deadline <description> /by: <YYYY-MM-DD HH:MM> |
deadline return book /by: 2021-09-30 18:00 |
| Add an Event task | event |
event <description> /from: <YYYY-MM-DD HH:MM> /to: <YYYY-MM-DD HH:MM> |
event meeting /from: 2021-09-17 14:00 /to: 2021-09-17 16:00 |
| List all tasks | -l |
-l |
-l |
| Mark a task as done | -m |
-m <task number> |
-m 1 |
| Mark a task as undone | -u |
-u <task number> |
-u 1 |
| Delete a task | -d |
-d <task number> |
-d 1 |
| Find a task with the keyword | -f |
-f <keyword to find> |
-f book |
[!NOTE] Replace the text in
<...>with the corresponding parameters.
task numberis the index of the task in the task list.
Other commands:
-b: Say bye to Ollie ☺There are 3 types of tasks that can be added to the task list:
todo <description>Adds a todo task with a description.
Example: todo read book adds a Todo task to the task list.
deadline <description> /by: <YYYY-MM-DD HH:MM>Adds a deadline task with a description and date.
The date should be in the format YYYY-MM-DD HH:MM, eg
2021-09-17 23:59.
Example: deadline return book /by: 2021-09-17 23:59 adds a Deadline task to the task list.
event <description> /from: <YYYY-MM-DD HH:MM> /to: <YYYY-MM-DD HH:MM>Adds an event task with a description, start time and end time.
The start and end times should be in the format YYYY-MM-DD HH:MM, eg
2021-09-17 14:00.
Example: event meeting /from: 2021-09-17 14:00 /to: 2021-09-17 16:00 adds an Event task to the task list.
-lLists all tasks in the task list.
Example: -l lists all tasks in the task list.
-m <task number>Marks a task as done, using the task number specified in the task list.
Example: -m 1 marks the first task in the list as done.
-u <task number>Marks a task as undone, using the task number specified in the task list.
Example: -u 1 marks the first task in the list as undone.
-d <task number>Deletes a task, using the task number specified in the task list.
Example: -d 3 deletes the third task in the list.
-f <keyword to find>Finds tasks with the keyword in the description.
Example: -f book finds tasks with the keyword book in the description.