免费注册 查看新帖 |

Chinaunix

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

如何debug shell脚本呀? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-12-09 15:41 |只看该作者 |倒序浏览
一个脚本,用来终止指定的进程。可以运行有错误,我想知道如何能debug它呀?脚本如下:

#!/bin/sh
## zap -- send a kill signal to processes by name

usage()
{
        echo "usage: $Prg -[c [f|h]] pname ..."
        echo "-c ask for confirmation"
        echo "-f sends a SIGKILL signal (default is SIGTERM)"
        echo "-h sends a SIGHUP signal"
        echo
        echo "Where pname is the process name(s) you want to zap."
        exit 1;
}

askyn() # ask for confirmation before continuing
{
        $ECHO "zap $* (y/n?)[n]: $el"
        read ans < /dev/tty # read from the terminal device
        case $ans in
                Y|y) return 1;;
                        *) return 0;; # anything other than y or Y is a no.
        esac
}

process()
{
        $PS | egrep "^$LOGNAME" | \
        while read line # read the output from ps
        do
                # does the command name match?
                if [`basename \`echo $line | cut -f$cmd -d" "\`` = "$1" ];then
                        # should we confirm the kill?
                        if [ $confirm -eq 1 ]; then
                                if askyn $line; then
                                        continue # on to the next case
                                fi
                        fi
                        # zap it
                        echo "zapping: $line"
                        kill -$signal `echo $line | cut -f$pid -d" "`
                fi
        done
}

Prg=`basename $0` # $0 contains the program name
confirm=0 # default is no confirmation
singal=15 # send the software terminate signal by default

pid=2 # field 2 of the ps command contains the process id
ps -x >/dev/null 2>&1 # if this works assume BSD style ps
if [ $? -eq 0 ]; then # $? contains the error level of the last command executed
        PS="ps -aux"
        cmd=11 # field 11 contains the command
else # assume Sysyem V style ps
        PS="ps -ef"
        cmd=8 # field 8 contains the command
fi
if [ `echo "hi \c" | wc -w` -eq 2 ];then
        ECHO="echo -n"; el="" # we have the -n switch
else
        ECHO=echo; el="\c" # \c tells echo not to print newline
fi

# test to make sure we have at least one argument
[ $# -lt 1 ] && usage

# use the getopts command to parse the command line
while getopts cfh i
do
        case "$i" in
        c) confirm=1;;
        f) [ $signal -ne 15 ] && echo "the -f and -h switches are mutually exclusive." && usage
                signal=9;;
        h) [ $signal -ne 15 ] && echo "the -f and -h switches are mutually exclusive." && usage
                signal=1;;
        '?') usage;;
        esac
done
shift `expr $OPTION - 1` # shift command line switches out of the way
[ -z "$1" ] && echo "No process was specified." && usage
while [ ! -z "$1" ] # for each process name specified
do
        process $1
        shift # shift the remaining arguments left
done
exit 0

论坛徽章:
1
荣誉会员
日期:2011-11-23 16:44:17
2 [报告]
发表于 2004-12-09 16:00 |只看该作者

如何debug shell脚本呀?

#!/bin/sh -xv
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP