https://github.com/mockdeep/rudo
Maintenance, progress, and play
https://github.com/mockdeep/rudo
Last synced: about 1 year 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 (over 15 years ago)
- Default Branch: main
- Last Pushed: 2020-10-03T03:32:39.000Z (over 5 years ago)
- Last Synced: 2025-03-27T12:52:38.148Z (about 1 year ago)
- Language: Ruby
- Homepage:
- Size: 74.2 KB
- Stars: 7
- Watchers: 2
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: MIT-LICENSE
Awesome Lists containing this project
README
# RUDO

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
```