summaryrefslogtreecommitdiff
path: root/ult/ult_9/while-2.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ult/ult_9/while-2.sh')
-rw-r--r--ult/ult_9/while-2.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/ult/ult_9/while-2.sh b/ult/ult_9/while-2.sh
new file mode 100644
index 0000000..5fbdd11
--- /dev/null
+++ b/ult/ult_9/while-2.sh
@@ -0,0 +1,7 @@
+while [ "$variable" != "quit" ]
+do
+ read variable
+ echo "Input - $variable"
+done
+exit 0
+