profile.xml 840 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
  3. <!ENTITY % general-entities SYSTEM "../general.ent">
  4. %general-entities;
  5. ]>
  6. <sect1 id="ch-scripts-profile">
  7. <title>The Bash Shell Startup Files</title>
  8. <?dbhtml filename="profile.html"?>
  9. <indexterm zone="ch-scripts-profile"><primary sortas="e-/etc/profile">/etc/profile</primary></indexterm>
  10. <para>Create the <filename>/etc/profile</filename> file:</para>
  11. <screen><userinput>cat &gt; /etc/profile &lt;&lt; "EOF"
  12. # Begin /etc/profile
  13. export LC_ALL=<replaceable>[ll]</replaceable>_<replaceable>[CC]</replaceable>
  14. export LANG=<replaceable>[ll]</replaceable>_<replaceable>[CC]</replaceable>
  15. export INPUTRC=/etc/inputrc
  16. # End /etc/profile
  17. EOF</userinput></screen>
  18. </sect1>