Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/mockdeep/rudo

Maintenance, progress, and play
https://github.com/mockdeep/rudo

Last synced: 2 months ago
JSON representation

Maintenance, progress, and play

Awesome Lists containing this project

README

        

# RUDO

![status](https://secure.travis-ci.org/mockdeep/rudo.png?branch=master)

Rudo is a simple command line based todo list editor. Here are the commands:

see the first n items on the list (default all):

```
rudo 5
rudo
```

add a task to the list:

```
rad 'my task'
```

add a task to the 2nd position:

```
rad 'another task' 2
```

mark the first task finished:

```
dun
```

mark the 5th task finished:

```
dun 5
```

mark the first 3 tasks finished:

```
dun 3x
```

move the first item to the back of the list:

```
walk
```

move the first 3 items to the back of the list:

```
walk 3
```