repo.or.cz
/
unleashed-kayak.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
*.sh: use /bin/sh, not /bin/ksh hashbang
[unleashed-kayak.git]
/
ksh.profile
blob
8fe86c02b0d3662ff4f5027b359824b5daf99ec0
1
# vim: ft=sh noet ts=8 sts=8 sw=8
2
set -o emacs
3
4
PATH=/usr/sbin:/sbin:/usr/bin
5
6
cat <<EOF
7
Welcome to the $(uname -sr) installer
8
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