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

https://github.com/untalbry/task-tracker-cli

CLI app to track your tasks and manage your to-do list.
https://github.com/untalbry/task-tracker-cli

bash terminal

Last synced: about 2 months ago
JSON representation

CLI app to track your tasks and manage your to-do list.

Awesome Lists containing this project

README

          

# BASH TASK CLI
![GitHub last commit](https://img.shields.io/github/last-commit/untalbry/task-tracker-cli)

## How to use:

### Adding a new task

```bash
task-cli add "Buy groceries"
```

Output: `Task added successfully (ID: 1)`

---

### Updating and deleting tasks

```bash
task-cli update 1 "Buy groceries and cook dinner"
```

```bash
task-cli delete 1
```

---

### Marking a task as in progress or done

```bash
task-cli mark-in-progress 1
```

```bash
task-cli mark-done 1
```

---

### Listing all tasks

```bash
task-cli list
```

---

### Listing tasks by status

```bash
task-cli list done
```

```bash
task-cli list todo
```

```bash
task-cli list in-progress
```