X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=etc%2Fzsh%2Fzshenv;h=7e0d2f3967b7ef536845564c50374f1997bc84df;hb=ae1db734c9bd60f5d5617a943b88aaa65f8b2249;hp=365b0dba9de0f795cdee698612ee7cfbd0359131;hpb=bf5493f17cbb327221eb800a43f1abfc93540322;p=grml-etc-core.git diff --git a/etc/zsh/zshenv b/etc/zsh/zshenv index 365b0db..7e0d2f3 100644 --- a/etc/zsh/zshenv +++ b/etc/zsh/zshenv @@ -3,30 +3,38 @@ # Authors: grml-team (grml.org), (c) Michael Prokop # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2. -# Latest change: Sam Feb 24 17:32:18 CET 2007 [mika] +# Latest change: Sam Mär 17 12:51:25 CET 2007 [mika] ################################################################################ # This file is sourced on all invocations of the shell. -# If the -f flag is present or if the NO_RCS option is -# set within this file, all other initialization files -# are skipped. +# It is the 1st file zsh reads; it's read for every shell, +# even if started with -f (setopt NO_RCS), all other +# initialization files are skipped. # # This file should contain commands to set the command # search path, plus other important environment variables. # This file should not contain commands that produce # output or assume the shell is attached to a tty. # +# Notice: .zshenv is the same, execpt that it's not read +# if zsh is started with -f +# # Global Order: zshenv, zprofile, zshrc, zlogin ################################################################################ # language settings (read in /etc/environment before /etc/default/locale as # the latter one is the default on Debian nowadays) [ -r /etc/environment ] && source /etc/environment - [ -r /etc/default/locale ] && source /etc/default/locale + if [ -n "$LANG" ] ; then + export LANG + else + [ -r /etc/default/locale ] && source /etc/default/locale + fi [ -n "$LANG" ] && export LANG || export LANG="en_US.iso885915" [ -n "$LC_ALL" ] && export LC_ALL [ -n "$LC_MESSAGES" ] && export LC_MESSAGES [ -r /etc/sysconfig/keyboard ] && source /etc/sysconfig/keyboard + [ -r /etc/timezone ] && TZ=$(cat /etc/timezone) # set environment variables (important for autologin on tty) [ -z "$HOSTNAME" ] && export HOSTNAME=`hostname` @@ -61,9 +69,16 @@ else PATH="/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/sbin:/usr/local/bin:/usr/NX/bin$ADDONS" fi -# fi fi + # Solaris + # case $(uname 2>/dev/null) in + # SunOS) + # PATH="/usr/bin:/usr/sbin:/usr/ccs/bin:/usr/sfw/bin:/opt/sfw/bin:/opt/bin:/usr/local/bin:/usr/openwin/bin:/usr/dt/bin:/usr/ucb:/usr/proc/bin:~/bin" + # # LD_LIBRARY_PATH="/opt/csw/lib:/opt/sfw/lib:/usr/lib:/usr/local/lib:/usr/ccs/lib:/usr/openwin/lib:/usr/ucb/lib" + # # MANPATH="$MANPATH:/opt/csw/man:/usr/man:/usr/share/man:/usr/local/man:/opt/sfw/man" + #esac + # less (:=pager) options: # export LESS=C export LESSOPEN="|lesspipe.sh %s"