服务器维护shell 脚本中的注释详解
2020-07-06 21:12 作者:admin
服务器维护小知识 单行注释:
单行注释就比较简单了,直接在行最前端加上符号 # 即可。具体用法如下所示:
# this is comment test
echo "this is comment test"
运行结果:
➜ comment git:(master) ✗ sh comment.sh
this is comment test
多行注释:
多行注释有很多方法,这里就列举几个常用的
服务器维护小知识1 eof截止符
eof截止符不但可以用作后续输入命令,还可以用作注释,常用用法:开始注释部分:输入::<<eof 结束部分:eof
具体示例如下所示:
# echo is test
echo "test"
echo "test"
echo "test"
echo "test"
echo "test"
:<<eof
echo "comment"
echo "comment"
echo "comment"
echo "comment"
echo "comment"
echo "comment"
eof
运行结果:
➜ comment git:(master) ✗ bash comment.sh
test
test
test
test
test
服务器维护小知识2 感叹号
!号一般作为嵌入内容部分,可以用作注释,常用用法:开始注释部分:输入::<<! 结束部分:!
具体示例如下所示:
# echo is test
echo "test"
echo "test"
echo "test"
echo "test"
echo "test"
:<<!
echo "comment"
echo "comment"
echo "comment"
echo "comment"
echo "comment"
echo "comment"
!
运行结果:
➜ comment git:(master) ✗ bash comment.sh
test
test
test
test
test
服务器维护小知识3 逗号
逗号一般作区分内容,也可以用作注释,常用用法:开始注释部分:输入:: ' 结束部分:' (注意,逗号和冒号之间要加空格)
具体示例如下所示:
# echo is test
echo "test"
echo "test"
echo "test"
echo "test"
echo "test"
: '
echo "comment"
echo "comment"
echo "comment"
echo "comment"
echo "comment"
echo "comment"
'
运行结果:
➜ comment git:(master) ✗ bash comment.sh
test
test
test
test
test
IT运维 我们选择北京艾锑无限
以上文章由北京艾锑无限科技发展有限公司整理