免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1303 | 回复: 3
打印 上一主题 下一主题

帮俺看看这是不是shell编的。 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2003-08-25 16:55 |只看该作者 |倒序浏览
如题,还有啊,俺想学习shell编程,以前只接触过basic,帮忙介绍几个学习基础知识的地址。
软件如下:

#!/bin/sh
#---------------- begin-restrictions
SIRIX_TYPE=all                # desktop/workspace/all
IRIX_VERSION=all        # 4/5/all
SIRIX_VERSION=all        # [+|-]V.../all
#---------------- end-restrictions
SIRIX_EXEC=/usr/stoll/sirix
TEMPDIR=/usr/tmp/internet_files
muster=`basename $1`
prog=`basename $0`
dir=`dirname $0`
if test $dir = .
then
    dir=`pwd`
fi

option=$1
if test "$option" = "-d"
then
    shift
fi

if test $# -gt 0
then
        # ----------------------------
        # Erstellen von Internet-Files
        # ----------------------------

        if test "$option" != "-d"
        then
            mkdir $TEMPDIR
            cp $0 $TEMPDIR
            prog=`basename $0`
       
        #   $SIRIX_EXEC/stoll_wsh\
        #           -title $prog\
        #           -hold\
        #            -bg 12\
        #            -fg 0\
        #            -cursorfg 0\
        #            -cursorbg 3\
        #            -geometry 80x24+200-400\
        #            -fn "-sgi-screen-bold-r-normal--16-160-72-72-m-90-iso8859-1"\
        #            -e $TEMPDIR/$prog -d $*
        #    exit
        fi
       
        #echo
        #echo "Internet file name:\c"
        #read name
        #echo $name
        if test -z  "$muster"
        then
            echo "Wrong name."
            rm -r $TEMPDIR
            exit
        fi
       
        cd $TEMPDIR
        mdir=`dirname $1`
       
        for i
        do
            f=`basename $i`
            files="$files $f"
            cp -r $i $TEMPDIR  
        done
       
       tar cvf $muster.tar $files   
       gzip -S .z $muster.tar  
       cp $0 $mdir/$muster.www
       cat $muster.tar.z >> $mdir/$muster.www
       
        cd
        rm -r $TEMPDIR
       
        echo
        echo "Internet file $muster.www created."
else
        # ----------------------------
        # Entpacken von Internet-Files
        # ----------------------------

        if test "`tail -1 $0`" = "#end-of-patch-script"
        then
            $SIRIX_EXEC/stoll_confirm\
                -header $prog\
                -t "No file selected."\
                -t "lease drop files onto $prog programme!"\
                -b exit
            exit
        fi

        if test "$option" != "-d"
        then
            $SIRIX_EXEC/stoll_wsh\
                    -title $prog\
                    -hold\
                    -bg 12\
                    -fg 0\
                    -cursorfg 0\
                    -cursorbg 3\
                    -geometry 80x24+200-400\
                    -fn "-sgi-screen-bold-r-normal--16-160-72-72-m-90-iso8859-1"\
                    -e $dir/$prog -d
            exit
        fi
       
        echo; echo; echo "*** STOLL SIRIX Internet Files Installation ***"
        echo
        if test "$SIRIX_TYPE" != all
        then
            if test "`$SIRIX_EXEC/is_desktop`" != "$SIRIX_TYPE"
            then
                echo "Installation for $prog only valid for $SIRIX_TYPE !"
                echo "$prog not installed."
                exit
            fi
        fi
       
        if test "$IRIX_VERSION" != all
        then
            if test "`uname -r | cut -c1`" != "$IRIX_VERSION"
            then
                echo "Installation for $prog only valid for IRIX$IRIX_VERSION !"
                echo "$prog not installed."
                exit
            fi
        fi
       
        if test "$SIRIX_VERSION" != all
        then
            av=`ls /usr/stoll/Tools/SIRIX/Version_* | awk -F_ '{print $NF}'`
            q=`echo $SIRIX_VERSION | awk '{print substr($0,1,1)}'`
            case "$q"
            in
                + | -)  rv=`echo $SIRIX_VERSION | awk '{print substr($0,2,length($0)-1)}'`;;
                *)      q="="; rv=$SIRIX_VERSION;;
            esac
            if test $rv != $av
            then
                echo "Installation for $prog not valid for this SIRIX version!"
                echo "Installed version is ${av}."
                echo "Required version is ${SIRIX_VERSION}."
                echo "$prog not installed."
                exit
            fi
        fi
       
        skip=`awk '/^#end-of-patch-script/ {print NR; exit}' $0`
        if test $skip -lt `wc -l < $0`
        then
            tartmp=/usr/tmp/gztmp$$
            skip=`expr $skip + 1`
            if tail +$skip $0 | $SIRIX_EXEC/gzip -cd > $tartmp
            then
                trap 'rm -f $tartmp' 0
       
        #---------------- begin-script-vor-tar
        #---------------- end-script-vor-tar
       
                tar -xvf $tartmp
                echo
            else
                echo Cannot decompress $0
                exit
            fi
        fi
       
        #---------------- begin-script-nach-tar
        #---------------- end-script-nach-tar
       
        echo; echo "Files installed."
        rm -f $tartmp $0
fi
exit
#end-of-patch-script

谢谢!

论坛徽章:
0
2 [报告]
发表于 2003-08-25 17:06 |只看该作者

帮俺看看这是不是shell编的。

是shell
学习看这个连接
http://chinaunix.net/forum/viewtopic.php?t=145262

里面基本shell书都是经典。

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
3 [报告]
发表于 2003-08-25 17:17 |只看该作者

帮俺看看这是不是shell编的。

^_^:好东东!

em19.gif (3.84 KB, 下载次数: 68)

em19.gif

论坛徽章:
0
4 [报告]
发表于 2003-08-26 08:59 |只看该作者

帮俺看看这是不是shell编的。

严重感谢 li2002 大虾。^_^
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP