Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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]
```