bash – 管道heredoc的语法;这是便携式的?

前端之家收集整理的这篇文章主要介绍了bash – 管道heredoc的语法;这是便携式的?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我熟悉这个语法:
cat << EOF | cmd
text
EOF

但只是发现bash允许我写:

cat << EOF |
text
EOF
cmd

(heredoc用作cmd1的输入)。这看起来像一个非常奇怪的语法。它是便携式的吗?

是的,POSIX标准允许这样。 According to the 2008 version:

The here-document shall be treated as a single word that begins after
the next <newline> and continues until there is a line containing only
the delimiter and a <newline>,with no <blank> characters in between.
Then the next here-document starts,if there is one.

并且在同一行中包括多个“here-documents”的此示例:

cat <<eof1; cat <<eof2
Hi,eof1
Helene.
eof2

所以没有问题做重定向或管道。你的例子类似这样的东西:

cat file |
cmd

而shell语法(在链接页面上的更进一步)包括这些定义:

pipe_sequence    :                             command
                 | pipe_sequence '|' linebreak command

newline_list     :              NEWLINE
                 | newline_list NEWLINE
                 ;
linebreak        : newline_list
                 | /* empty */

因此,管道符号后面可以是行尾,并且仍然被认为是管道的一部分。

原文链接:https://www.f2er.com/bash/392415.html

猜你在找的Bash相关文章