diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2002-05-02 20:15:02 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2002-05-02 20:15:02 +0000 |
commit | 3f12743405f4123463b57e0446bafdd398f2e598 (patch) | |
tree | 83da594bcaa934cf257c132e40768c79e4ebc98c /chapter05/bash-exp.xml | |
parent | 9ef087369ca769f8f3a4ff76f7dba91a0bc80678 (diff) |
fix bugs #335 and #342 plus various touch ups, layout fixed (line wrapping mostly)
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1864 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05/bash-exp.xml')
-rw-r--r-- | chapter05/bash-exp.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chapter05/bash-exp.xml b/chapter05/bash-exp.xml index 3dd99144a..5a17c6bba 100644 --- a/chapter05/bash-exp.xml +++ b/chapter05/bash-exp.xml @@ -28,11 +28,11 @@ trouble later on in this chapter when you install the Texinfo package. That package requires ncurses and termcap can't reliably be used there.</para> -<para><userinput>ln -sf bash sh:</userinput> This command creates the sh -symlink that points to bash. Most scripts run themselves via 'sh' -(invoked by the #!/bin/sh as the first line in the scripts) which -invokes a special bash mode. Bash will then behave (as closely as -possible) as the original Bourne shell.</para> +<para><userinput>ln -sf bash $LFS/bin/sh:</userinput> This command creates +the <filename class="symlink">sh</filename> symlink that points to bash. Most +scripts run themselves via 'sh' (invoked by the #!/bin/sh as the first line +in the scripts) which invokes a special bash mode. Bash will then behave +(as closely as possible) as the original Bourne shell.</para> <para>The <userinput>&&</userinput>'s at the end of every line cause the next command to be executed only if the previous command exists |