服務器維護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運維 我們選擇北京艾銻無限
以上文章由北京艾銻無限科技發展有限公司整理