Minor changes in ULT-sessions 4,5 and LaTeX handout for Sphinx build.
authorPuneeth Chaganti <puneeth@fossee.in>
Fri, 18 Sep 2009 16:06:59 +0530
changeset 63 dc13f22e9489
parent 62 780effcd7c5a
child 64 fb96a1e1c38c
Minor changes in ULT-sessions 4,5 and LaTeX handout for Sphinx build.
latex/handout.rst
ult/Section_5.rst
ult/session4.rst
--- a/latex/handout.rst	Fri Sep 18 15:49:06 2009 +0530
+++ b/latex/handout.rst	Fri Sep 18 16:06:59 2009 +0530
@@ -802,16 +802,10 @@
 
 
 Recommended Reading
-===================
+-------------------
 
 1. *LaTeX Wikibook*
 
 2. *The Not So Short Introduction to LaTeX2e* by Tobias Oetikar et al.. 
 
 
-
-
-
-
-..  LocalWords:  LaTeX Lamport tex documentclass pdf pdflatex dvi topmatter ToC
-..  LocalWords:  FOSSEE tocdepth addcontentsline toc emph
--- 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
--- a/ult/session4.rst	Fri Sep 18 15:49:06 2009 +0530
+++ b/ult/session4.rst	Fri Sep 18 16:06:59 2009 +0530
@@ -402,7 +402,7 @@
 +-----------------------------------------+---------+
 
 +---------------------------------------+------------------+
-| Finding and Replacing                                    |
+| Finding and Replacing                 | Commands         |
 +=======================================+==================+
 | Replace the first instance of ``old`` |``:s/old/new``    |
 | with ``new`` in the current line.     |                  |