From 05616e275f9b1c499f622fdaf80cefba09b25efd Mon Sep 17 00:00:00 2001 From: Manuel Canales Esparcia Date: Sat, 29 May 2004 20:09:37 +0000 Subject: [PATCH] isn't allowed inside . git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3726 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter04/settingenviron.xml | 4 ++-- 1 file 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 bash shell. While logged in as user lfs, issue the following command to create a new .bash_profile: -cat > ~/.bash_profile << EOF +cat > ~/.bash_profile << "EOF" exec env -i HOME=$HOME TERM=$TERM PS1='\u:\w\$ ' /bin/bash EOF @@ -32,7 +32,7 @@ which doesn't read the /etc/profile or .bash_profile files, but reads the .bashrc file instead. Create this latter file now: -cat > ~/.bashrc << EOF +cat > ~/.bashrc << "EOF" set +h umask 022 LFS=/mnt/lfs