What is the effective change made in termrc between the old version:
disk=''
if(test -f /dev/sd*/swap)
disk=`{ls /dev/sd*/swap >[2]/dev/null | sed 1q | sed
's!swap$!!'}
if(! ~ $disk '') {
swap $disk^swap >/dev/null >[2=1]
dossrv
c:
}
and the new one:
# start up local swapping, mount dos fat fs
disk=`{ls /dev/sd*/swap >[2]/dev/null}
if (! ~ $#disk 0) {
swap $disk(1) >/dev/null >[2=1]
dossrv
c:
}
rm /env/disk
is it just an elimination of ‘test’s or something more substantial?--Joel
