rudo 0.2.00 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +9 -8
- data/bin/dun +3 -3
- data/bin/rad +3 -3
- data/bin/rudo +2 -2
- data/bin/walk +3 -3
- metadata +1 -1
data/README.md
CHANGED
|
@@ -4,49 +4,50 @@
|
|
|
4
4
|
|
|
5
5
|
Rudo is a simple command line based todo list editor. Here are the commands:
|
|
6
6
|
|
|
7
|
-
see the first n items on the list (default
|
|
7
|
+
see the first n items on the list (default all):
|
|
8
8
|
|
|
9
9
|
```
|
|
10
|
+
rudo 5
|
|
10
11
|
rudo
|
|
11
12
|
```
|
|
12
13
|
|
|
13
|
-
add a task to the list
|
|
14
|
+
add a task to the list:
|
|
14
15
|
|
|
15
16
|
```
|
|
16
17
|
rad 'my task'
|
|
17
18
|
```
|
|
18
19
|
|
|
19
|
-
add a task to the 2nd position
|
|
20
|
+
add a task to the 2nd position:
|
|
20
21
|
|
|
21
22
|
```
|
|
22
23
|
rad 'another task' 2
|
|
23
24
|
```
|
|
24
25
|
|
|
25
|
-
mark the first task finished
|
|
26
|
+
mark the first task finished:
|
|
26
27
|
|
|
27
28
|
```
|
|
28
29
|
dun
|
|
29
30
|
```
|
|
30
31
|
|
|
31
|
-
mark the 5th task finished
|
|
32
|
+
mark the 5th task finished:
|
|
32
33
|
|
|
33
34
|
```
|
|
34
35
|
dun 5
|
|
35
36
|
```
|
|
36
37
|
|
|
37
|
-
mark the first 3 tasks finished
|
|
38
|
+
mark the first 3 tasks finished:
|
|
38
39
|
|
|
39
40
|
```
|
|
40
41
|
dun 3x
|
|
41
42
|
```
|
|
42
43
|
|
|
43
|
-
move the first item to the back of the list
|
|
44
|
+
move the first item to the back of the list:
|
|
44
45
|
|
|
45
46
|
```
|
|
46
47
|
walk
|
|
47
48
|
```
|
|
48
49
|
|
|
49
|
-
move the first 3 items to the back of the list
|
|
50
|
+
move the first 3 items to the back of the list:
|
|
50
51
|
|
|
51
52
|
```
|
|
52
53
|
walk 3
|
data/bin/dun
CHANGED
data/bin/rad
CHANGED
data/bin/rudo
CHANGED
data/bin/walk
CHANGED