https://github.com/kodedninja/odot
:heavy_check_mark: A simple CLI checklist
https://github.com/kodedninja/odot
Last synced: 24 days ago
JSON representation
:heavy_check_mark: A simple CLI checklist
- Host: GitHub
- URL: https://github.com/kodedninja/odot
- Owner: kodedninja
- License: mit
- Created: 2017-05-20T07:23:02.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-11-28T10:40:46.000Z (over 8 years ago)
- Last Synced: 2025-02-03T05:36:41.272Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 15.6 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# odot
odot is a really simple checklist command line tool. It's pretty dumb, but I'll work on it. It makes todoing very comfortable through short commands.
### Installation
```
$ npm install -g odotlist
```
### Usage
```
Usage: odot
Commands:
list|= List your current list
add|+ Add an item to your list
remove|- Remove an item to your list
filter|* Remove finished items from your list
check|! Check an item on your list
stats|s Print your stats
clear|0 Clear your list
idea|? [item...] Adds an idea to the list
yes|y [item...] Adds an idea to the todo list
no|n [item...] Removes an idea from the list
Options:
-h, --help output usage information
-V, --version output the version number
```
Commands ```-``` and ```!``` also work with numbers (ex.: ```odot ! 1``` will check the first item on the list) or without any paremeters.
#### Examples
```
$ odot + Make examples
```
Adds "Make examples" to your list
```
$ odot ! Make examples
```
or
```
$ odot ! 1
```
Checks "Make examples"
```
$ odot - Make examples
```
Removes "Make examples" from the list
```
$ odot =
```
Prints the list
```
$ odot *
```
Remove finished items from your list
```
$ odot s
```
Print your stats
```
$ odot ? This is an idea
```
Adds "This is an idea" to the list
```
$ odot yes This is an idea
```
Adds "This is an idea" to the list from idea list
```
$ odot no This is an idea
```
Removed "This is an idea" from idea list