|
@@ -2,6 +2,33 @@
|
2
|
2
|
|
3
|
3
|
> A simple utility to estimate tasks using PERT (Program evaluation and review technique)
|
4
|
4
|
|
|
5
|
+### Demo
|
|
6
|
+
|
|
7
|
+![pert example](https://cloud.githubusercontent.com/assets/6382002/13582789/8205bac0-e4ae-11e5-9a03-894e32943f30.gif)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+### Usage
|
|
11
|
+
|
|
12
|
+Comma separated task list in the form `"1,2,12 4,5,9 2,3,6"`, where whitespace separates tasks.
|
|
13
|
+(or you can use piping inputs `echo "1,2,3 10,30,40" | pert`)
|
|
14
|
+
|
|
15
|
+Usage:
|
|
16
|
+
|
|
17
|
+`pert [optimistic,realistic,pessimistic]`
|
|
18
|
+
|
|
19
|
+Example:
|
|
20
|
+
|
|
21
|
+`pert 1,3,4`
|
|
22
|
+
|
|
23
|
+`pert 10,15,20 5,7,10`
|
|
24
|
+
|
|
25
|
+`pert "1,2,3" "15,17,20"`
|
|
26
|
+
|
|
27
|
+`cat data.txt | pert`
|
|
28
|
+
|
|
29
|
+`echo "1,2,3 9,10,14" | pert`
|
|
30
|
+
|
|
31
|
+
|
5
|
32
|
### Install
|
6
|
33
|
|
7
|
34
|
```bash
|
|
@@ -15,27 +42,6 @@ For uninstalling, open up the cloned directory and run
|
15
|
42
|
sudo make uninstall
|
16
|
43
|
```
|
17
|
44
|
|
18
|
|
-### Usage
|
19
|
|
-<pre>
|
20
|
|
-A command line PERT calculator for quick estimates.
|
21
|
|
-
|
22
|
|
-Comma separated task list in the form "1,2,12 4,5,9 2,3,6", where whitespace separates tasks.
|
23
|
|
-
|
24
|
|
-Usage:
|
25
|
|
- pert [optimistic,realistic,pessimistic]
|
26
|
|
-
|
27
|
|
-Example:
|
28
|
|
- pert 1,3,4
|
29
|
|
- pert 10,15,20 5,7,10
|
30
|
|
- pert "1,2,3" "15,17,20"
|
31
|
|
- cat data.txt | pert
|
32
|
|
- echo "1,2,3 9,10,14" | pert
|
33
|
|
-</pre>
|
34
|
|
-
|
35
|
|
-### Demo
|
36
|
|
-
|
37
|
|
-![pert example](https://cloud.githubusercontent.com/assets/6382002/13582789/8205bac0-e4ae-11e5-9a03-894e32943f30.gif)
|
38
|
|
-
|
39
|
45
|
### Example
|
40
|
46
|
|
41
|
47
|
Command:
|