dot.bashrc 706 B

12345678910111213141516171819202122232425262728293031323334
  1. ##
  2. ## @l_prefix@/.bashrc -- Local Bash Profile
  3. ##
  4. # provide user and host information in default prompt
  5. PS1="\u@\h\$ "
  6. # environment permissions
  7. umask 022
  8. ulimit -c 16384
  9. # history functionality
  10. shopt -s histappend
  11. HISTSIZE=100
  12. HISTFILESIZE=100
  13. # various additional variables
  14. export TMPDIR=/tmp
  15. export TEMPDIR=$TMPDIR
  16. export BLOCKSIZE=1024
  17. # suck in the whole Bourne-Shell
  18. # environment of OpenPKG hierarchy
  19. eval `@l_prefix@/etc/rc --eval all env`
  20. # make sure some non-standard but usually
  21. # important executable directories are active
  22. test -d /usr/ccs/bin && PATH="$PATH:/usr/ccs/bin"
  23. test -d /usr/local/bin && PATH="$PATH:/usr/local/bin"
  24. # path to us
  25. BASH_ENV=$HOME/.bashrc