“Your mind is for having ideas, not holding them.” – David Allen (source)
Turtle frees your mind of having to remember things you need to do. It's,
- text-based
- easy to learn
FASTSUPER FAST to use
All you need to do is,
- download it from here.
- double-click it.
- add your tasks.
- let it manage your tasks for you 😆😆
And it is FREE!
Lists all tasks currently stored in Turtle task manager.
Format: list
Displays Turtle's greeting to greet the user.
Format: hello
Exits the program and saves the user's tasks to memory.
Format bye
Marks the specified task in Turtle task manager as completed.
Format: mark INDEX
- Marks the task specified by the
INDEX
as completed. - The index refers to the index number of the task as displayed in the task list.
- The index must be a positive integer 1, 2, 3,...
Examples:
list
followed bymark 2
marks the task at index 2 as done.
Un-marks the specified task in Turtle task manager as incomplete.
Format: unmark INDEX
- Un-marks the task specified by the
INDEX
as not completed. - The index refers to the index number of the task as displayed in the task list.
- The index must be a positive integer 1, 2, 3,...
Examples:
list
followed byunmark 2
marks the task at index 2 as not done.
Delete the specified task in Turtle task manager.
Format: delete INDEX
- Deletes the task at the specified
INDEX
. - The index refers to the index number of the task as displayed in the task list.
- The index must be a positive integer 1, 2, 3,...
Examples:
list
followed bydelete 2
deletes the task at index 2.
Find tasks that have descriptions that contain a keyword.
Format: find KEYWORD
- Search is case-sensitive. e.g.
BOOK
will not matchbook
. - Only the description of a task is searched.
- Partial words are searched as well. e.g.
boo
with matchbook
. - Will return all tasks that contain the specified keyword.
Examples:
find book
returns all tasks that contain the keywordbook
as part of the description of the task.
Finds umarked deadline
tasks for
reminder purposes.
Format: remind
- Returns the
deadline
task which is incomplete.
Adds a todo task to the Turtle task manager.
Format: todo DESCRIPTION
- The
DESCRIPTION
is any sentence describing the task and includes the spaces used.
Examples:
todo read book
adds thetodo
taskread book
to the Turtle task manager.
Adds a deadline task to the Turtle task manager.
Format: deadline DESCRIPTION /by BY
- The
DESCRIPTION
is any sentence describing the task and includes the spaces used. - The
BY
time specifies the deadline, it is a time. e.g. 2022-10-15 06:00. - The
BY
time must be in the formatyyyy-MM-dd HH:mm
.
Examples:
deadline return book /by 2022-10-15 06:00
adds thedeadline
taskreturn book
to the Turtle task manager, and it sets the time by which to complete the task, i.e. the deadline, to be2022-10-15 06:00
.
Adds an event task to the Turtle task manager.
Format: event DESCRIPTION /from START /to END
- The
DESCRIPTION
is any sentence describing the task and includes the spaces used. - The
START
time specifies the start of the event. TheEND
time specifies the end of the event. Both are times. e.g.2022-10-15 06:00
. - The
START
andEND
times must be in the formatyyyy-MM-dd HH:mm
.
Examples:
event project meeting /from 2022-10-15 06:00 /to 2022-10-15 07:00
adds theevent
taskproject meeting
to the Turtle task manager. It sets the start time to2022-10-15 06:00
and the end time to2022-10-15 07:00
.
Command | Format, Examples |
---|---|
List | list |
Hello | hello |
Exit | bye |
Mark | mark INDEX , e.g. mark 1 |
Un-mark | unmark INDEX , e.g. unmark 1 |
Delete | delete INDEX , e.g. delete 1 |
Find | find KEYWORD , e.g. find book |
Reminder | remind |
Todo | todo DESCRIPTION , e.g. todo read book |
Deadline | deadline DESCRIPTION /by BY , e.g. deadline return book /by 2022-10-15 06:00 |
Event | event DESCRIPTION /from START /to END , e.g. event project meeting /from 2022-10-15 06:00 /to 2022-10-15 07:00 |