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.

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