Browse Source

update readme

Lukáš Mešťan 8 years ago
parent
commit
8c045b0fb4
1 changed files with 19 additions and 6 deletions
  1. 19
    6
      README.md

+ 19
- 6
README.md View File

1
 ### Bash PERT Calculator
1
 ### Bash PERT Calculator
2
 
2
 
3
-A simple utility to estimate tasks using PERT (Program evaluation and review technique)
3
+> A simple utility to estimate tasks using PERT (Program evaluation and review technique)
4
+
5
+### Install
6
+
7
+```bash
8
+$ git clone https://github.com/arzzen/pert.git && cd pert
9
+$ sudo make install
10
+```
11
+
12
+For uninstalling, open up the cloned directory and run
13
+
14
+```bash
15
+sudo make uninstall
16
+```
4
 
17
 
5
 ### Usage
18
 ### Usage
6
 <pre>
19
 <pre>
9
 Comma separated task list in the form "1,2,12 4,5,9 2,3,6", where whitespace separates tasks.
22
 Comma separated task list in the form "1,2,12 4,5,9 2,3,6", where whitespace separates tasks.
10
 
23
 
11
 Usage:
24
 Usage:
12
-	pert.sh [optimistic,realistic,pessimistic]
25
+	pert [optimistic,realistic,pessimistic]
13
 
26
 
14
 Example:
27
 Example:
15
-	pert.sh 1,3,4
16
-	pert.sh 10,15,20 5,7,10
17
-	pert.sh "1,2,3" "15,17,20"
28
+	pert 1,3,4
29
+	pert 10,15,20 5,7,10
30
+	pert "1,2,3" "15,17,20"
18
 </pre>
31
 </pre>
19
 
32
 
20
 ### Demo
33
 ### Demo
25
 
38
 
26
 Command:
39
 Command:
27
 
40
 
28
-`$ ./pert.sh 5,7,10 2,3,4 10,12,14`
41
+`$ ./pert 5,7,10 2,3,4 10,12,14`
29
 
42
 
30
 Output:
43
 Output:
31
 <pre>
44
 <pre>

Loading…
Cancel
Save