(2007-04-11) Kable-distro

This commit is contained in:
2007-04-11 00:00:00 +02:00
commit 85f73f180f
548 changed files with 51134 additions and 0 deletions

35
baseconfig/etc/profile Normal file
View File

@@ -0,0 +1,35 @@
# Begin /etc/profile
# Set PATH
if [ "`id -u`" -eq 0 ]; then
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
else
PATH="/usr/bin:/bin:/usr/local/bin:~/bin:."
fi
export PATH
# Set prompt
if [ "$PS1" ]; then
if [ "$BASH" ]; then
PS1='\u@\h:\w\$ '
else
if [ "`id -u`" -eq 0 ]; then
PS1='# '
else
PS1='$ '
fi
fi
fi
umask 022
export LANG=es_ES@euro
export INPUTRC=/etc/inputrc
# Aliases
alias ls='ls --color'
alias cd..='cd ..'
# End /etc/profile