shell脚本中经常看到这样的命令; :<< :> 很疑惑这是什么意思呢?求指教!
1 回答
慕尼黑的夜晚无繁华
TA贡献1864条经验 获得超6个赞
冒号在shell中表示空指令。
原文如下:
:
null command [colon]. This is the shell equivalent of a "NOP" (no op, a do-nothing operation). It
may be considered a synonym for the shell builtin true. The ":" command is itself a Bash builtin, and its exit status is true (0).
所以:
: > file 用于清空文件
下面这种形式是Here Document的一种用法,用于注释一段代码块
:<<BLOCK
...
segment
...
BLOCK
添加回答
举报
0/150
提交
取消