diff options
author | Simon Perreault <nomis80@videotron.ca> | 2001-03-25 08:17:59 +0000 |
---|---|---|
committer | Simon Perreault <nomis80@videotron.ca> | 2001-03-25 08:17:59 +0000 |
commit | 55ffe68cade6ebf2ccb9810ebf40ebd89f78017f (patch) | |
tree | 47e4396cb25232982d9ea868dc1278cdfc7f82dd /chapter05 | |
parent | 08463b5b7bcae02a6f6e65db91252e46fc47076c (diff) |
Grammar fixes.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@362 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05')
-rw-r--r-- | chapter05/bash-exp.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chapter05/bash-exp.xml b/chapter05/bash-exp.xml index ce6069d86..367d139da 100644 --- a/chapter05/bash-exp.xml +++ b/chapter05/bash-exp.xml @@ -44,11 +44,11 @@ possible) as the original Bourne shell. <para> The <userinput>&&</userinput>'s at the end of every line cause -the next command only to be executed when the previous command exists +the next command to be executed only if the previous command exists with a return value of 0 indicating success. In case all of these commands are copy&pasted -on the shell is is important to be ensured that if -./configure fails, make isn't being executed and likewise if make fails +on the shell, is is important to be ensured that if +./configure fails, make isn't being executed and, likewise, if make fails, that make install isn't being executed, and so forth. </para> |