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

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

但只是发现bash允许我写:

  1. cat << EOF |
  2. text
  3. EOF
  4. 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”的此示例:

  1. cat <<eof1; cat <<eof2
  2. Hi,eof1
  3. Helene.
  4. eof2

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

  1. cat file |
  2. cmd

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

  1. pipe_sequence : command
  2. | pipe_sequence '|' linebreak command
  3.  
  4. newline_list : NEWLINE
  5. | newline_list NEWLINE
  6. ;
  7. linebreak : newline_list
  8. | /* empty */

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

猜你在找的Bash相关文章