add some more missing things to known_extras
[unleashed-kayak.git] / ksh.profile
blob8fe86c02b0d3662ff4f5027b359824b5daf99ec0
1 # vim: ft=sh noet ts=8 sts=8 sw=8
2 set -o emacs
4 PATH=/usr/sbin:/sbin:/usr/bin
6 cat <<EOF
7 Welcome to the $(uname -sr) installer
9 EOF
10 while true ; do
11         read 'reply?(I)nstall or (S)hell? '
12         case "$reply" in
13                 [iI]*) /install && break ;;
14                 [sS]*) break ;;
15         esac
16 done