红联Linux门户
Linux帮助

SCO OPenServer 5下通用的命令行下安装VOL格式的软件的shell程序

发布时间:2006-09-01 10:00:22来源:红联作者:Redassociation
[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]
文章评论

共有 0 条评论