We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9df7b4c commit 686f600Copy full SHA for 686f600
countargs.sh
@@ -1,15 +1,17 @@
1
#!/bin/bash
2
-#Purpose: Counting given postional parameters.
3
-#Version:1.0
4
-#Created Date: Mon May 7 21:55:05 IST 2018
5
-#Modified Date:
6
-#Author: Ankam Ravi Kumar
+##################################################
+# Purpose: Counting given postional parameters.
+# Version:1.0
+# Created Date: Mon May 7 21:55:05 IST 2018
+# Modified Date:
7
+# Author: Ankam Ravi Kumar
8
9
+
10
# START #
-#echo "Your current given parameters are $#"
11
+echo "Your current given parameters are $#"
12
if [ $# -lt 1 ];then
13
echo "Program Usage is './scriptname.sh' options"
14
else
15
echo "Program executed successfully"
16
fi
-
17
# END #
0 commit comments