linux中调试shell脚本

Posted tiramisuyj

tags:

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

原来的脚本Check.sh:

monfile="/var/log/test/testMon.txt"
logfile="/var/log/test/testMon.log"
touch $monfile

...

该脚本是在window里编辑的,编辑后上传到linux的

问题:

运行后,目录下出现的文件是testMon.txt??和testMon.log??

就是会有乱码

修改过程:

执行sh -x Check.sh,就发现后面多了\r:monfile=$‘/var/log/test/testMon.txt\r‘,因为windows换行符是\r\n,而linux是\n,

修复把window转换为linux:dos2unix Check.sh



以上是关于linux中调试shell脚本的主要内容,如果未能解决你的问题,请参考以下文章

如何在shell脚本中修改添加替换指定文件中的内容

07 linux 一个完整的shell脚本调试工具

shell脚本调试技术_转

Linux Shell 程序调试

使用sh-x调试shell脚本

shell脚本调试