___ _ ____ ____ ____
\ \/// _ \/ _ \/ _ \
\ / | / \|| | \|| / \|
/ / | \_/|| |_/|| |-||
/_/ \____/\____/\_/ \|
Yoda is a simple command-line task management app that helps you keep track of your todos, deadlines, and events.
With Yoda, managing tasks is as fun as learning from the Jedi Master himself.
Ensure you have Java 17 or above installed in your computer.
Mac users: Ensure you have the precise JDK version prescribed
here.
Download the latest Yoda.jar.
Open a terminal in the folder containing the JAR.
java -jar Yoda.jar
----------------------------------------------
___ _ ____ ____ ____
\ \/// _ \/ _ \/ _ \
\ / | / \|| | \|| / \|
/ / | \_/|| |_/|| |-||
/_/ \____/\____/\_/ \|
------------------- AWAKENS ------------------
Do or do not what shall I help you with? >
todoAdds a To-Do task to the list. A To-Do can contain only a description.
Format:
todo <description>
Example:
todo read book
deadlineAdds a Deadline task to the list. A Deadline can contain a description and an end date/time.
Format:
deadline <description> /by <end>
Example:
deadline submit report /by Friday
eventAdds a Event task to the list. A Event can contain a description, start date/time, and end date/time. Format:
event <description> /from <start> /to <end>
Example:
event project meeting /from Mon 2pm /to Mon 4pm
listShows a list of all tasks in the task list.
Format:
list
markMarks a task with X, to flag it as finished.
Format:
mark <task_number>
unmarkUnmarks a task, to flag it as unfinished. (Tasks are unfinished by default)
Format:
unmark <task_number>
delete(You will be asked to confirm before deletion.)
Format:
delete <task_number>
findFinds tasks which contain any of the given keywords.
Format:
find <keyword>
Example:
find cs2113 will show a task containing do cs2113 ip, but not I love CS2113
byeExits the program.
Format:
bye
data/user.txt.----------------------------------------------
___ _ ____ ____ ____
\ \/// _ \/ _ \/ _ \
\ / | / \|| | \|| / \|
/ / | \_/|| |_/|| |-||
/_/ \____/\____/\_/ \|
------------------- AWAKENS ------------------
Welcome back youngling! It is a pleasure to see you again
Do or do not what shall I help you with? > todo buy milk
----------------------------------------------
Successfully added:
[T][ ] buy milk
----------------------------------------------
Do or do not what shall I help you with? > list
----------------------------------------------
You have 1 tasks:
1. [T][ ] buy milk
----------------------------------------------
Do or do not what shall I help you with? > mark 1
----------------------------------------------
Affirmative! Marked have been the task:
[T][X] buy milk
----------------------------------------------
Do or do not what shall I help you with? > bye
Do or do not, I shall say goodbye.
------------- PROGRAM TERMINATED -------------