加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

shell练习题2

发布时间:2020-12-15 23:19:20 所属栏目:安全 来源:网络整理
导读:需求如下: 写一个shell脚本,检查指定的shell脚本是否有语法错误,若有错误,首先显示错误信息,然后提示用户输入q或Q退出脚本, 输入其他内容则直接用vim打开该shell脚本。 参考解答如下 方法1 #!/bin/bashcmd="/bin/bash"ed="/usr/bin/vim"if [ $# -ne 1

需求如下:

写一个shell脚本,检查指定的shell脚本是否有语法错误,若有错误,首先显示错误信息,然后提示用户输入q或Q退出脚本,

输入其他内容则直接用vim打开该shell脚本。

参考解答如下

  • 方法1
#!/bin/bash

cmd="/bin/bash"
ed="/usr/bin/vim"

if [ $# -ne 1 ];then
    echo "USAGE:$0 script_name"
    exit 1
fi

$cmd -n $1
if [ $? -ne 0 ];then
    read -p "Please enter Q/q to exit,or other to edit it by vim."
    if [ "$REPLY" = "q" -o "$REPLY" = "Q" ];then
        exit 0
    else
        $ed $1
    fi
else
    echo "The scipt is OK."
fi
  • 方法2
#!/bin/bash

cmd="/bin/bash"
ed="/usr/bin/vim"

if [ $# -ne 1 ];then
    echo "USAGE:$0 script_name"
    exit 1
fi

$cmd -n $1 2>/tmp/err
if [ $? -eq 0 ];then
    echo "The script is OK."
else
    cat /tmp/err
    read -p "Please enter Q/q to exit,or other to edit it by vim." n
    if [ -z $n ];then
        $ed $1
        exit
    fi
    if [ "$n" = "q" -o "$n" = "Q" ];then
        exit
    else
        $ed $1
        exit
    fi
fi

注意: bash -n选项只检测语法错误。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读