t-cli 0.2.0

A simple CLI task manager
# t


[<img src="https://img.shields.io/crates/v/t-cli.svg?style=flat-square" alt="crates.io link">](https://crates.io/crates/t-cli)

t is a simple task manager written in rust.

It was designed to be a faster version of [taskbook.](https://github.com/klaussinani/taskbook)

### Install :


```
cargo install t-cli
```

### Usage:


```
t h

    Usage
        t [<options> <args>] 

    Options
        none                    Display a list of tasks.
        none+args               Create a task
        none+number             Check/uncheck task

        c                       Check/uncheck task
        a                       Create a task
        n                       Create a note
        cls                     Clear checked tasks and archive them
        o                       Displays previously completed tasks
        d                       Deletes a task
        b                       Backup current tasks
        dir                     Displays the config directories
        h                       Displays the help page

    Examples                     
        t                       Displays tasks
        t example task          Creates a task 'example task'
        t !TODO example task    Create a task in a board called 'TODO'        
        t a example task        Creates a task 'example task'
        t a !TODO example task  Create a task in a board called 'TODO'        
        t n example note        Create note 'example note'
        t 1 2 3                 Checks task 1, 2 and 3
        t c 1                   Checks task 1
        t 1-3                   Checks task 1, 2 and 3
        t c 1-3                 Checks task 1, 2 and 3
        t cls                   Clears all checked task
        t o                     Displays previously completed tasks
        t d 1                   Deletes task number 1
        t d 1-3                 Deletes task 1, 2 and 3
        t b                     Creates the file backup.toml in the config directory
        t dir                   Displays the config directories 
        t h                     Displays the help page"

```

### Config Directory:


Windows: `%appdata%/t`

Linux: `~/.config/t`