命令行下custom安装VOL格式的软件的shell程序
|
|
|
作者:佚名
来源:InterNet 加入时间:2005-2-15 |
#!/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 "软件安装完毕!"
[文章录入员:nancy] |
|
|
|
|