aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerard Beekmans <gerard@linuxfromscratch.org>2001-03-02 19:30:10 +0000
committerGerard Beekmans <gerard@linuxfromscratch.org>2001-03-02 19:30:10 +0000
commitb8273fbb08c7b988eb10a9fc3acfd2d85b55ed3f (patch)
tree3f5cf1121600fb39fc0c5159de8bfc0576296664
parent8dbddfb248e87ab7ba0ae9a1c2d2c77460d0b6b0 (diff)
Changed more & to &amp;
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@255 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r--chapter07/rc.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/chapter07/rc.xml b/chapter07/rc.xml
index 16dfe2e8a..4048977c5 100644
--- a/chapter07/rc.xml
+++ b/chapter07/rc.xml
@@ -88,7 +88,7 @@ runlevel=$RUNLEVEL
[ "$1" != "" ] &amp;&amp; runlevel=$1
if [ "$runlevel" = "" ]
then
- echo "Usage: $0 &lt;runlevel&gt;" &gt;&2
+ echo "Usage: $0 &lt;runlevel&gt;" &gt;&amp;2
exit 1
fi
@@ -99,7 +99,7 @@ fi
#
previous=$PREVLEVEL
-[ "$previous" = "" ] && previous=N
+[ "$previous" = "" ] &amp;&amp; previous=N
export runlevel previous