|
@@ -4,11 +4,11 @@
|
4
|
4
|
if [ -z "$1" ] || [[ "$1" =~ [-]*(help|h) ]]; then
|
5
|
5
|
echo -e "\nA command line PERT calculator for quick estimates."
|
6
|
6
|
echo -e "\nComma separated task list in the form \"1,2,12 4,5,9 2,3,6\", where whitespace separates tasks."
|
7
|
|
- echo -e "\nUsage:\n\tpert [optimistic,realistic,pessimistic]\n"
|
|
7
|
+ echo -e "\nUsage:\n\tpert.sh [optimistic,realistic,pessimistic]\n"
|
8
|
8
|
echo -e "Example:"
|
9
|
|
- echo -e "\tpert 1,3,4"
|
10
|
|
- echo -e "\tpert 10,15,20 5,7,10"
|
11
|
|
- echo -e "\tpert \"1,2,3\" \"15,17,20\"\n"
|
|
9
|
+ echo -e "\tpert.sh 1,3,4"
|
|
10
|
+ echo -e "\tpert.sh 10,15,20 5,7,10"
|
|
11
|
+ echo -e "\tpert.sh \"1,2,3\" \"15,17,20\"\n"
|
12
|
12
|
exit 1
|
13
|
13
|
fi
|
14
|
14
|
|