shell脚本学习心得
Posted 海之石
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本学习心得相关的知识,希望对你有一定的参考价值。
如果脚本错误退出,一个好习惯是显示脚本名并将之定向到标准错误中。用户应该知道产生错误的脚本名
#!/bin/sh # ifcp.sh if cp myfile myfile.bak > /dev/null 2>&1; then echo "good copy" else echo "`basename $0`: error could not copy the file" >&2 fi
以上是关于shell脚本学习心得的主要内容,如果未能解决你的问题,请参考以下文章