Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gers2017/tudu
Rust command line utility to keep track of your tasks/todos
https://github.com/gers2017/tudu
cli rust tool
Last synced: about 5 hours ago
JSON representation
Rust command line utility to keep track of your tasks/todos
- Host: GitHub
- URL: https://github.com/gers2017/tudu
- Owner: Gers2017
- License: gpl-3.0
- Created: 2022-03-30T05:01:34.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-06-25T05:43:04.000Z (over 2 years ago)
- Last Synced: 2023-03-05T17:50:42.153Z (over 1 year ago)
- Topics: cli, rust, tool
- Language: Rust
- Homepage:
- Size: 13 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Tudu
Command line tool to keep track of your tasks/todos
![get cmd in terminal](tudu.gif)
### Schema
```
[Commit to master]!!!!
- fix typo
- read the docs
[Task]
- step 1
- step 2
```- The text surrounded by square brackets is the title of the task. It should be short and descriptive
- The number of exclamation marks is the priority of the task. Tasks can have zero exclamation marks
- The indentation is optional, just keep in mind that it'll be lost if the cli adds a new todo## Usage
### Tudu cli
```sh
tudu [get, rm, add] [--help] # subcomamnds and flags
```### Get SubCommand
```sh
tudu get [-a, --all, -p, --primary, -t, --title, --help]
```### Rm SubCommand
```sh
tudu rm [-a, --all, -p, --primary, -t, --title, --help]
```### Add SubCommand
```sh
tudu add [--help]
```