1 | # Sample .profile for SuSE Linux |
---|
2 | # rewritten by Christian Steinruecken <cstein@suse.de> |
---|
3 | # |
---|
4 | # This file is read each time a login shell is started. |
---|
5 | # All other interactive shells will only read .bashrc; this is particularly |
---|
6 | # important for language settings, see below. |
---|
7 | |
---|
8 | test -z "$PROFILEREAD" && . /etc/profile |
---|
9 | |
---|
10 | # Most applications support several languages for their output. |
---|
11 | # To make use of this feature, simply uncomment one of the lines below or |
---|
12 | # add your own one (see /usr/share/locale/locale.alias for more codes) |
---|
13 | # |
---|
14 | #export LANG=de_DE@euro # uncomment this line for German output |
---|
15 | #export LANG=fr_FR@euro # uncomment this line for French output |
---|
16 | #export LANG=es_ES@euro # uncomment this line for Spanish output |
---|
17 | |
---|
18 | |
---|
19 | # Some people don't like fortune. If you uncomment the following lines, |
---|
20 | # you will have a fortune each time you log in ;-) |
---|
21 | |
---|
22 | #if [ -x /usr/bin/fortune ] ; then |
---|
23 | # echo |
---|
24 | # /usr/bin/fortune |
---|
25 | # echo |
---|
26 | #fi |
---|
27 | |
---|
28 | # UM Specific set up |
---|
29 | #------------------- |
---|
30 | |
---|
31 | export UMDIR=/work/n02/n02/hum |
---|
32 | TARGET_MC=cce |
---|
33 | |
---|
34 | # Setup UM variables |
---|
35 | VN=8.6 |
---|
36 | if test -f $HOME/.umsetvars_$VN; then |
---|
37 | . $HOME/.umsetvars_$VN |
---|
38 | else |
---|
39 | . $UMDIR/vn$VN/$TARGET_MC/scripts/.umsetvars_$VN |
---|
40 | fi |
---|
41 | |
---|
42 | . /etc/bash.bashrc > /dev/null 2>&1 |
---|
43 | |
---|