diff options
author | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2004-05-29 20:09:37 +0000 |
---|---|---|
committer | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2004-05-29 20:09:37 +0000 |
commit | 05616e275f9b1c499f622fdaf80cefba09b25efd (patch) | |
tree | b1a1d4a0edc487b6c502e71fce70a8742967597d /chapter04 | |
parent | 55851d6ef3b438d78359c9ea0ba861069bedeeb1 (diff) |
<qoute> isn't allowed inside <userinput>.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3726 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter04')
-rw-r--r-- | chapter04/settingenviron.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chapter04/settingenviron.xml b/chapter04/settingenviron.xml index d43de93e5..174d6ad27 100644 --- a/chapter04/settingenviron.xml +++ b/chapter04/settingenviron.xml @@ -12,7 +12,7 @@ startup files for the <command>bash</command> shell. While logged in as user <emphasis>lfs</emphasis>, issue the following command to create a new <filename>.bash_profile</filename>:</para> -<screen><userinput>cat > ~/.bash_profile << <quote>EOF<quote> +<screen><userinput>cat > ~/.bash_profile << "EOF" exec env -i HOME=$HOME TERM=$TERM PS1='\u:\w\$ ' /bin/bash EOF</userinput></screen> @@ -32,7 +32,7 @@ which doesn't read the <filename>/etc/profile</filename> or <filename>.bash_profile</filename> files, but reads the <filename>.bashrc</filename> file instead. Create this latter file now:</para> -<screen><userinput>cat > ~/.bashrc << <quote>EOF<quote> +<screen><userinput>cat > ~/.bashrc << "EOF" set +h umask 022 LFS=/mnt/lfs |