diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-03-02 19:29:23 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-03-02 19:29:23 +0000 |
commit | 8dbddfb248e87ab7ba0ae9a1c2d2c77460d0b6b0 (patch) | |
tree | 4dbec14bf69faa4196a6a317007a94989cd9fbb2 /chapter07 | |
parent | 44a7fad22b6c10a0ce72727fa0d4bcb46bca5ac2 (diff) |
Replaced && by &&
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@254 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter07')
-rw-r--r-- | chapter07/rc.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chapter07/rc.xml b/chapter07/rc.xml index 3aba51da3..16dfe2e8a 100644 --- a/chapter07/rc.xml +++ b/chapter07/rc.xml @@ -85,7 +85,7 @@ runlevel=$RUNLEVEL # was passed to this script we won't change runlevels. # -[ "$1" != "" ] && runlevel=$1 +[ "$1" != "" ] && runlevel=$1 if [ "$runlevel" = "" ] then echo "Usage: $0 <runlevel>" >&2 |