diff options
author | Srikant | 2012-02-01 13:21:32 +0530 |
---|---|---|
committer | Srikant | 2012-02-01 13:21:32 +0530 |
commit | f84de83d5d83f77912862373a8cdf7f33a57eb8a (patch) | |
tree | a1f12847cb54fa3ff1a29f91ec9be0fe7569e17f /ult/ult_7/while-2.sh | |
parent | e3276253509dbb50815e14022c1fb8c193507992 (diff) | |
download | sdes-stscripts-f84de83d5d83f77912862373a8cdf7f33a57eb8a.tar.gz sdes-stscripts-f84de83d5d83f77912862373a8cdf7f33a57eb8a.tar.bz2 sdes-stscripts-f84de83d5d83f77912862373a8cdf7f33a57eb8a.zip |
added 8 ult slides
Diffstat (limited to 'ult/ult_7/while-2.sh')
-rw-r--r-- | ult/ult_7/while-2.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ult/ult_7/while-2.sh b/ult/ult_7/while-2.sh new file mode 100644 index 0000000..5fbdd11 --- /dev/null +++ b/ult/ult_7/while-2.sh @@ -0,0 +1,7 @@ +while [ "$variable" != "quit" ] +do + read variable + echo "Input - $variable" +done +exit 0 + |