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,6 +1,19 @@
1 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 18
 ### Usage
6 19
 <pre>
@@ -9,12 +22,12 @@ A command line PERT calculator for quick estimates.
9 22
 Comma separated task list in the form "1,2,12 4,5,9 2,3,6", where whitespace separates tasks.
10 23
 
11 24
 Usage:
12
-	pert.sh [optimistic,realistic,pessimistic]
25
+	pert [optimistic,realistic,pessimistic]
13 26
 
14 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 31
 </pre>
19 32
 
20 33
 ### Demo
@@ -25,7 +38,7 @@ Example:
25 38
 
26 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 43
 Output:
31 44
 <pre>

Loading…
Cancel
Save