<<<<<<<< bash运营商?

时间:2013-03-25 22:56:23

标签: bash

我一直使用bc和<<<算子本身

bc <<< 3+3

但我想知道&lt;&lt;&lt;&lt;&lt;&lt;&lt;真的吗?它是回声和管道吗?

1 个答案:

答案 0 :(得分:0)

根据GNU bash手册

3.6.7 Here Strings

A variant of here documents, the format is:

<<< word
The word is expanded and supplied to the command on its standard input.

所以我猜这只是一个通过管道连接到标准输入的字符串。