Browse Source

update readme

Lukáš Mešťan 8 years ago
parent
commit
1c40640def
1 changed files with 49 additions and 2 deletions
  1. 49
    2
      README.md

+ 49
- 2
README.md View File

@@ -1,2 +1,49 @@
1
-# pert
2
-A simple utility to estimate tasks using PERT
1
+### Bash PERT Calculator
2
+
3
+A simple utility to estimate tasks using PERT (Program evaluation and review technique)
4
+
5
+### Usage
6
+<pre>
7
+A command line PERT calculator for quick estimates.
8
+
9
+Comma separated task list in the form "1,2,12 4,5,9 2,3,6", where whitespace separates tasks.
10
+
11
+Usage:
12
+	pert [optimistic,realistic,pessimistic]
13
+
14
+Example:
15
+	pert 1,3,4
16
+	pert 10,15,20 5,7,10
17
+	pert "1,2,3" "15,17,20"
18
+</pre>
19
+
20
+### Example
21
+
22
+Command:
23
+
24
+`$ ./pert.sh 5,7,10 2,3,4 10,12,14`
25
+
26
+Output:
27
+<pre>
28
+Tasks
29
+
30
+ +--------------------------------------------------------------------------------------+
31
+ | #            | optimistic | realistic | pessimistic | duration |     risk | variance |
32
+ +--------------------------------------------------------------------------------------+
33
+ | 1. task      |          5 |         7 |          10 |     7.16 |     0.83 |     0.68 |
34
+ | 2. task      |          2 |         3 |           4 |     3.00 |     0.33 |     0.10 |
35
+ | 3. task      |         10 |        12 |          14 |    12.00 |     0.66 |     0.43 |
36
+ +--------------------------------------------------------------------------------------+
37
+ | summary      |          - |         - |           - |    22.16 |     1.82 |     1.21 |
38
+ +--------------------------------------------------------------------------------------+
39
+
40
+Three point estimates
41
+
42
+ +----------------------------------------+
43
+ | confidence    |            |           |
44
+ +----------------------------------------+
45
+ | 1 Sigma - 68% |      20.95 |     23.37 |
46
+ | 1 Sigma - 95% |      19.74 |     24.58 |
47
+ | 1 Sigma - 99% |      18.53 |     25.79 |
48
+ +----------------------------------------+
49
+ </pre>

Loading…
Cancel
Save