Changeset 65df7b1 in clfs-sysroot for BOOK/final-preps


Ignore:
Timestamp:
Sep 15, 2006, 5:36:32 PM (18 years ago)
Author:
Joe Ciccone <jciccone@…>
Branches:
master
Children:
3cf7854
Parents:
5ae7889
Message:

Change occurences of to $\{VARIABLE\} for consistency

Location:
BOOK/final-preps
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • BOOK/final-preps/aboutclfs.xml

    r5ae7889 r65df7b1  
    1616  Check that the <envar>CLFS</envar> variable is set up properly with:</para>
    1717
    18 <screen><userinput>echo $CLFS</userinput></screen>
     18<screen><userinput>echo ${CLFS}</userinput></screen>
    1919
    2020  <para>Make sure the output shows the path to the CLFS partition's mount
     
    2626
    2727  <para>Having this variable set is beneficial in that commands such as
    28   <command>install -d $CLFS/tools</command> can be typed literally. The shell
    29   will automatically replace <quote>$CLFS</quote> with
     28  <command>install -d ${CLFS}/tools</command> can be typed literally. The shell
     29  will automatically replace <quote>${CLFS}</quote> with
    3030  <quote>/mnt/clfs</quote> (or whatever the variable was set to) when it
    3131  processes the command line.</para>
    3232
    33   <para>If you haven't created the <filename class="directory">$CLFS</filename>
     33  <para>If you haven't created the <filename class="directory">${CLFS}</filename>
    3434  directory, do so at this time by issuing the following commands:</para>
    3535
    36 <screen><userinput>install -dv $CLFS</userinput></screen>
     36<screen><userinput>install -dv ${CLFS}</userinput></screen>
    3737
    38   <para>Do not forget to check that <envar>$CLFS</envar> is set whenever
     38  <para>Do not forget to check that <envar>${CLFS}</envar> is set whenever
    3939  you leave and reenter the current working environment (as when doing a
    4040  <quote>su</quote> to <systemitem class="username">root</systemitem> or
  • BOOK/final-preps/addinguser.xml

    r5ae7889 r65df7b1  
    7979
    8080  <para>Grant <systemitem class="username">clfs</systemitem> full access to
    81   <filename class="directory">$CLFS</filename> by making <systemitem
     81  <filename class="directory">${CLFS}</filename> by making <systemitem
    8282  class="username">clfs</systemitem> the directory's owner:</para>
    8383
    84 <screen><userinput>chown -Rv clfs $CLFS</userinput></screen>
     84<screen><userinput>chown -Rv clfs ${CLFS}</userinput></screen>
    8585
    8686  <para>Next, login as user <systemitem class="username">clfs</systemitem>.
  • BOOK/final-preps/creatingdirs.xml

    r5ae7889 r65df7b1  
    2525mkdir -pv ${CLFS}/usr/{,local/}share/man/man{1,2,3,4,5,6,7,8}
    2626for dir in ${CLFS}/usr{,/local}; do
    27   ln -sv share/{man,doc,info} $dir
     27  ln -sv share/{man,doc,info} ${dir}
    2828done</userinput></screen>
    2929
  • BOOK/final-preps/settingenviron.xml

    r5ae7889 r65df7b1  
    1717
    1818<screen os="b"><userinput>cat &gt; ~/.bash_profile &lt;&lt; "EOF"
    19 <literal>exec env -i HOME=$HOME TERM=$TERM PS1='\u:\w\$ ' /bin/bash</literal>
     19<literal>exec env -i HOME=${HOME} TERM=${TERM} PS1='\u:\w\$ ' /bin/bash</literal>
    2020EOF</userinput></screen>
    2121
Note: See TracChangeset for help on using the changeset viewer.