archboot/etc/profile
2007-07-29 12:22:28 +00:00

32 lines
524 B
Bash

#
# /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="C"
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