profile 281 B

12345678910111213141516171819
  1. ##
  2. ## @l_prefix@/etc/bash/profile -- Global GNU Bash Profile
  3. ##
  4. # interactive prompt
  5. if expr $- : ".*i.*" >/dev/null; then
  6. PS1='\u@\h\$ '
  7. fi
  8. # environment permissions
  9. umask 022
  10. # history functionality
  11. shopt -s histappend
  12. HISTSIZE=100
  13. HISTFILESIZE=100
  14. HISTIGNORE="&"