Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mockdeep/rudo
- Owner: mockdeep
- License: mit
- Created: 2010-10-23T02:47:49.000Z (about 14 years ago)
- Default Branch: main
- Last Pushed: 2020-10-03T03:32:39.000Z (about 4 years ago)
- Last Synced: 2024-09-19T12:07:49.045Z (3 months ago)
- Language: Ruby
- Homepage:
- Size: 74.2 KB
- Stars: 7
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: MIT-LICENSE
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
```