2005-04-22 15:56:32 +02:00
|
|
|
# Login shell profile.
|
|
|
|
|
2005-08-12 11:40:16 +02:00
|
|
|
# Erase character and erase line interrupt keys
|
|
|
|
stty sane erase '^H' kill '^U'
|
2005-04-22 15:56:32 +02:00
|
|
|
|
|
|
|
# Check terminal type.
|
|
|
|
case $TERM in
|
|
|
|
dialup|unknown|network)
|
|
|
|
echo -n "Terminal type? ($TERM) "; read term
|
|
|
|
TERM="${term:-$TERM}"
|
|
|
|
unset term
|
|
|
|
esac
|
|
|
|
|
|
|
|
# Shell configuration.
|
|
|
|
unset EDITOR; . $HOME/.ashrc
|