shell 判断脚本有无语法错误

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell 判断脚本有无语法错误相关的知识,希望对你有一定的参考价值。

判断一个指定的脚本是否是语法错误;如果有错误,则提醒用户键入Q或者q无视错误并退出,其它任何键可以通过vim打开这个指定的脚本;


#!/bin/bash

script_file="./test.sh"

sh -n $script_file>/dev/null 2 >/dev/null

n=`echo $?`

if [ $n -ne 0 ];then

    read -p "this script is a bad file , "q" or "Q"---exit ,other key to edit the file : " key

    if [$key == ‘q‘ -o $key == ‘Q‘ ] 

        then

            exit

       else

            vi $script_file

    fi

fi





本文出自 “实用Linux知识技能分享” 博客,请务必保留此出处http://superleedo.blog.51cto.com/12164670/1892192

以上是关于shell 判断脚本有无语法错误的主要内容,如果未能解决你的问题,请参考以下文章

shell脚本语法判断流程控制语句

我在将我的 bash 命令转换为 shell 脚本中的 shell 脚本语法错误时遇到错误

perl/shell 脚本中存在语法错误时的 rpm 构建预防

shell脚本启动语法错误syntax error near unexpected token '{

linux shell脚本中for循环的语法

Shell脚本的条件测试与比较