blob: d81777befd2e279c0ae5b0186405f53036ad3c60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# /etc/profile
# System wide environment and startup programs
# Functions and aliases go in /etc/bashrc
HOSTNAME=`/bin/hostname`
HISTSIZE=1000
export PATH HOSTNAME HISTSIZE
for i in /etc/profile.d/*.sh ; do
if [ -r "$i" ]; then
. $i
fi
done
|