HERE字符串
时间:2019-04-16 23:59:05 来源:igfitidea点击:
HERE字符串和HERE文档类似
语法
command <<<$word
或者
command arg1 <<<"$word"
其中$word是一个shell变量,它将在其标准输入上被展开,然后提供给命令。
下面的wc命令将统计给定参数中的单词数:
wc -w <<< "This is a test."
统计激活的网口
wc -w <<<$(netstat -i | cut -d" " -f1 | egrep -v "^Kernel|Iface|lo")