--- a/ult/Section_5.rst Fri Sep 18 15:49:06 2009 +0530
+++ b/ult/Section_5.rst Fri Sep 18 16:06:59 2009 +0530
@@ -594,7 +594,21 @@
done
exit 0
-Now lets try and use these above mentioned options provided by shell to write a utility. Until now, when we try find or locate it looks through directories and files for result. But they wont search through tar archives and zipped files. Lets create a shell script for especially looking through these files: ::
+``until``
+~~~~~~~~~
+
+The ``until`` loop is similar to the ``while`` loop, except that it executes until the conditional command does not execute properly.
+
+The infinite loop changes to the following, when ``until`` is used.
+::
+
+ until false
+ do
+ echo "True"
+ done
+
+Now lets try and use these above mentioned options provided by shell to write a utility. Until now, when we try find or locate it looks through directories and files for result. But they wont search through tar archives and zipped files. Lets create a shell script for especially looking through these files
+::
#!/bin/sh
@@ -628,18 +642,6 @@
done
done
-``until``
-~~~~~~~~~
-
-The ``until`` loop is similar to the ``while`` loop, except that it executes until the conditional command does not execute properly.
-
-The infinite loop changes to the following, when ``until`` is used.
-::
-
- until false
- do
- echo "True"
- done
Functions
---------
@@ -699,5 +701,3 @@
* http://tldp.org/LDP/abs/html/
* http://tldp.org/LDP/Bash-Beginners-Guide/html/Bash-Beginners-Guide.html
-
-.. LocalWords: allfiles txt cvf vf tf regex mkdir cp cd xvf gzip gz stdout