plan9port/rcmain

44 lines
817 B
Text
Raw Normal View History

# rcmain: Plan 9 on Unix version
if(~ $#home 0) home=$HOME
if(~ $#home 0) home=/
if(~ $#ifs 0) ifs='
'
switch($#prompt){
case 0
prompt=('% ' ' ')
case 1
prompt=($prompt ' ')
}
2004-03-26 17:31:41 +00:00
if(~ $rcname ?.out ?.rc */?.rc */?.out) prompt=('broken! ' ' ')
2004-03-25 23:03:22 +00:00
if(flag p) path=(/bin)
if not{
finit
2004-03-25 23:03:22 +00:00
if(~ $#path 0) {
path=(/bin /usr/bin)
. <{sh -c 'echo $PATH |
sed "s/^/path=(''/; s/$/'')/; s/:/'' ''/g"'}
2004-03-25 23:03:22 +00:00
}
}
fn sigexit
if(! ~ $#cflag 0){
2004-03-25 23:03:22 +00:00
if(flag l && test -r $home/lib/profile) . $home/lib/profile
status=''
eval $cflag
}
if not if(flag i){
2003-12-02 22:03:35 +00:00
if(~ $TERM 9term){
if(~ $#'fn#cd' 0)
fn cd { builtin cd $1 && label `{pwd} }
}
if(flag l && /bin/test -r $home/lib/profile) . $home/lib/profile
status=''
if(! ~ $#* 0) . $*
. -i '/dev/stdin'
}
if not if(~ $#* 0) . '/dev/stdin'
if not{
status=''
. $*
}
exit $status