[code]#!/bin/sh
#
# SCO OPenServer 5下通用的命令行下安装VOL格式的软件的shell程序
echo -n "请输入要安装的软件的所在目录:"
read VolPath
VDIR=$VolPath
VOLS=$VDIR/VOL.000.000
component=`grep "component" < $VOLS | head -1 | cut -d= -f2 | cut -d: -f1`
package=`grep "component" < $VOLS | head -1 | cut -d= -f2 | cut -d: -f2`
custom -p $component $package -i -z $VDIR
echo "软件安装完毕!"[/code]