archboot/etc/profile

33 lines
528 B
Text
Raw Normal View History

2007-02-22 23:46:50 +01:00
#
# /etc/profile
#
export PATH="/bin:/usr/bin:/sbin:/usr/sbin"
export LESSCHARSET="latin1"
export INPUTRC="/etc/inputrc"
export LESS="-R"
# Locale settings (find your locale with 'locale -a')
export LANG="en_EN"
export LC_COLLATE="C"
export COLUMNS LINES
export PS1='[Arch Linux: \W]\$ '
export PS2='> '
umask 022
alias ls='ls --color=auto'
alias dir='dir --color=auto'
cd /
echo " Waiting for usb/fw devices to come ready ..."
sleep 5
clear
cat /etc/motd
echo "Hit ENTER to enter the bash shell ..."
read
# End of file