-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.profile
41 lines (32 loc) · 1.32 KB
/
.profile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Sample .profile for SuSE Linux
# rewritten by Christian Steinruecken <[email protected]>
#
# This file is read each time a login shell is started.
# All other interactive shells will only read .bashrc; this is particularly
# important for language settings, see below.
test -z "$PROFILEREAD" && . /etc/profile || true
# Set shell to ZSH
# export SHELL=/usr/bin/zsh -l
export XTERM_SHELL=/usr/bin/zsh -l
# Set login terminal-type (Different from GUI)
export TERM=xterm-256color
# Treat unset variables as an error, and immediately exit.
set -u
# Causes a pipeline to produce a failure return code if *any* command errors.
set -o pipefail
# Most applications support several languages for their output.
# To make use of this feature, simply uncomment one of the lines below or
# add your own one (see /usr/share/locale/locale.alias for more codes)
# This overwrites the system default set in /etc/sysconfig/language
# in the variable RC_LANG.
#
#export LANG=de_DE.UTF-8 # uncomment this line for German output
#export LANG=fr_FR.UTF-8 # uncomment this line for French output
#export LANG=es_ES.UTF-8 # uncomment this line for Spanish output
# Some people don't like fortune. If you uncomment the following lines,
# you will have a fortune each time you log in ;-)
#if [ -x /usr/bin/fortune ] ; then
# echo
# /usr/bin/fortune
# echo
#fi