./package/compile
mkdir /var/service
sed 's#/command:##' command/svscanboot\
| sed 's#/command/##'\
| sed 's#:/usr/X11R6/bin##'\
| sed 's#/service#/var/service#g'\
| sed 's#errors: .*$#errors: ..#' > tmp
mv tmp command/svscanboot
for file in command/*
do
if ( file ${file} | grep -i 'shell script' ) ; then
install -o root -g wheel -m 0755 ${file} /usr/local/bin
else
install -o root -g wheel -m 0755 -s ${file} /usr/local/bin
fi
done
|