You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
484 B

  1. #!/bin/sh
  2. env > $HOME/.env.txt
  3. # export PS1="\$ "
  4. export LC_TIME=C
  5. export TERMCAP="${TERMCAP}:vb="
  6. export HOSTNAME
  7. export BROWSER=firefox
  8. export ENV=~/.shrc
  9. # export TMP=/tmp
  10. # export TEMP=/tmp
  11. addtopath(){
  12. for p in "$@"
  13. do
  14. echo $PATH | grep -E "^$p:|:$p:|:$p$" >/dev/null 2>&1 || PATH="$p:${PATH}"
  15. done
  16. }
  17. # export PATH="${PATH}:${HOME}/bin"
  18. addtopath ${HOME}/bin
  19. test -f "${HOME}/.pythonrc" && export PYTHONSTARTUP="${HOME}/.pythonrc"
  20. export PYTHONPATH=~/.py