diff options
author | hugues <hugues@a0e5b806-a6f9-0310-978d-cbce73f8a913> | 2007-05-02 15:52:48 +0000 |
---|---|---|
committer | Hugues Hiegel <hugues@hiegel.fr> | 2008-03-07 14:15:11 +0100 |
commit | ccb3c507311592b523b3ef5100a85dff6cae3bd5 (patch) | |
tree | e569b26526088b3adc8ca17f3d9f345295d1cca2 /net:example.com/Environment.zsh | |
parent | 7cedf9eb7d9c07c11a7d4c8d5aa49dfd9f5294fa (diff) |
On vire les noms qui gênent :-)
git-svn-id: svn+ssh://hugues@maison/opt/svn/private/hugues@350 a0e5b806-a6f9-0310-978d-cbce73f8a913
Diffstat (limited to 'net:example.com/Environment.zsh')
-rw-r--r-- | net:example.com/Environment.zsh | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/net:example.com/Environment.zsh b/net:example.com/Environment.zsh new file mode 100644 index 0000000..27997ce --- /dev/null +++ b/net:example.com/Environment.zsh @@ -0,0 +1,34 @@ +#!/bin/zsh +## +## Part of configuration files for Zsh 4 +## by Hugues Hiegel <hugues@nullpart.net> +## +## NO WARRANTY PROVIDED, USE AT YOUR OWN RISKS +## +## You are encouraged to use, modify, and redistribute +## these files with or without this notice. +## + +## Mettez le nom de votre station de travail habituelle ici ## +if { ! -e ~/.workstation ] +then + echo >&2 "Quelle est votre station de travail attitrée ? (`hostname -s`) " && read $workstation + echo ${workstation:-$(hostname -s)} > ~/.workstation +fi +WORKSTATION=$(cat ~/.workstation) + +export LC_ALL=fr_FR +[ "$TERM" = "rxvt-unicode" ] && export TERM=rxvt + +#export PATH=${PATH:+$PATH:}~/souche_linux_pl/tools/bin:/usr/local/urd2/bin:/usr/local/urd2/openrg2_6/mips-linux-uclibc/bin/ +#export LD_LIBRARY_PATH=${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH:}~/souche_linux_pl/tools/lib +#export MANPATH=${MANPATH:+$MANPATH:}/usr/local/urd2/man:~/souche_linux_pl/tools/man:~/souche_linux_pl/tools/share/man + +PATH=$PATH:/opt/edtm/bin +PATH=$PATH:/opt/openrg/mips-linux-uclibc/bin +typeset -gU PATH MANPATH + +#__PREFIX=/filer1/dev_users/hiegel/souche_linux_pl/tools/ + +export http_proxy="http://proxy:3128" +export ftp_proxy=$http_proxy |