We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8003a2 commit 92439bfCopy full SHA for 92439bf
while-loop.sh
@@ -1,8 +1,10 @@
1
-While Loop Example, print any given number table.
2
-
3
#!/bin/bash
4
-## While Loop Example with 2 table
5
-echo -e "Please provide one value:\c"
+# While Loop Example with 2 table, print any given number table.
+# See Full Explanation of this above shell script [while loop](https://www.youtube.com/Techarkit?sub_confirmation=1)
+
+#START
6
7
+echo -e "Please provide one value: \c"
8
read -r c
9
i=1
10
while [ $i -le 10 ]
@@ -12,4 +14,4 @@ echo "$c * $i = $b"
12
14
i=`expr $i + 1`
13
15
done
16
-See Full Explanation of this above shell script [while loop](https://www.youtube.com/Techarkit?sub_confirmation=1)
17
+#END
0 commit comments