]> git.pld-linux.org Git - projects/setup.git/blob - etc/profile
Modified Files:
[projects/setup.git] / etc / profile
1 # /etc/profile
2
3 # System wide environment and startup programs
4 # Functions and aliases go in /etc/bashrc
5
6 PATH="$PATH:/usr/X11R6/bin"
7 PS1="\u@\h \W\\$ "
8
9 ulimit -c 1000000
10 if [ `id -gn` = `id -un` -a `id -u` -gt 14 ]; then
11         umask 002
12 else
13         umask 022
14 fi
15
16 USER=`id -un`
17 LOGNAME=$USER
18 MAIL="/var/spool/mail/$USER"
19
20 HOSTNAME=`/bin/hostname`
21 HISTSIZE=1000
22 HISTFILESIZE=1000
23 export PATH PS1 HOSTNAME HISTSIZE HISTFILESIZE USER LOGNAME MAIL
24
25 for i in /etc/profile.d/*.sh ; do
26         if [ -x $i ]; then
27                 . $i
28         fi
29 done
30
31 unset i
This page took 0.049918 seconds and 4 git commands to generate.