source: trunk/minix/etc/ast/.profile@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 304 bytes
Line 
1# Login shell profile.
2
3# Erase character and erase line interrupt keys
4stty sane erase '^H' kill '^U'
5
6# Check terminal type.
7case $TERM in
8dialup|unknown|network)
9 echo -n "Terminal type? ($TERM) "; read term
10 TERM="${term:-$TERM}"
11 unset term
12esac
13
14# Shell configuration.
15unset EDITOR; . $HOME/.ashrc
Note: See TracBrowser for help on using the repository browser.