2
|
1 # Sample .bashrc for SuSE Linux
|
|
2 # Copyright (c) SuSE GmbH Nuernberg
|
|
3
|
|
4 # There are 3 different types of shells in bash: the login shell, normal shell
|
|
5 # and interactive shell. Login shells read ~/.profile and interactive shells
|
|
6 # read ~/.bashrc; in our setup, /etc/profile sources ~/.bashrc - thus all
|
|
7 # settings made here will also take effect in a login shell.
|
|
8 #
|
|
9 # NOTE: It is recommended to make language settings in ~/.profile rather than
|
|
10 # here, since multilingual X sessions would not work properly if LANG is over-
|
|
11 # ridden in every subshell.
|
|
12
|
|
13 # This might be helpful for Linux newbies who previously used DOS...
|
|
14 test -f /etc/profile.dos && . /etc/profile.dos
|
|
15
|
|
16 # Some applications read the EDITOR variable to determine your favourite text
|
|
17 # editor. So uncomment the line below and enter the editor of your choice :-)
|
|
18 #export EDITOR=/usr/bin/vim
|
|
19 #export EDITOR=/usr/bin/mcedit
|
|
20
|
|
21 # For some news readers it makes sense to specify the NEWSSERVER variable here
|
|
22 #export NEWSSERVER=your.news.server
|
|
23
|
|
24 # If you want to use a Palm device with Linux, uncomment the two lines below.
|
|
25 # For some (older) Palm Pilots, you might need to set a lower baud rate
|
|
26 # e.g. 57600 or 38400; lowest is 9600 (very slow!)
|
|
27 #
|
|
28 #export PILOTPORT=/dev/pilot
|
|
29 #export PILOTRATE=115200
|
|
30
|
|
31 test -s ~/.alias && . ~/.alias
|
|
32
|
|
33 alias shut="/sbin/shutdown -h now"
|
|
34 alias boot="/sbin/shutdown -r now"
|
|
35
|
|
36 export LD_LIBRARY_PATH=/usr/local/lib
|
|
37
|
|
38 export PATH=$PATH:/opt/OpenOffice.org/program
|
|
39
|
|
40 # Fuer xfe und nedit
|
|
41 export LANG=de_DE@euro
|
|
42 export LC_CTYPE="de_DE@euro"
|
|
43 export LC_NUMERIC="de_DE@euro"
|
|
44 export LC_TIME="de_DE@euro"
|
|
45 export LC_COLLATE="de_DE@euro"
|
|
46 export LC_MONETARY="de_DE@euro"
|
|
47 export LC_MESSAGES="de_DE@euro"
|
|
48 export LC_PAPER="de_DE@euro"
|
|
49 export LC_NAME="de_DE@euro"
|
|
50 export LC_ADDRESS="de_DE@euro"
|
|
51 export LC_TELEPHONE="de_DE@euro"
|
|
52 export LC_MEASUREMENT="de_DE@euro"
|
|
53 export LC_IDENTIFICATION="de_DE@euro"
|
|
54
|