I'm familiar with this syntax:
cat << EOF | cmd text EOF
but just discovered that bash allows me to write:
cat << EOF | text EOF cmd
(the heredoc is used as input to cmd). This seems like a very odd syntax. Is it portable?
|
Yes, the POSIX standard allows this. According to the 2008 version:
And includes this example of multiple "here-documents" in the same line:
So there is no problem doing redirections or pipes. Your example is similar to something like this:
And the shell grammar (further down on the linked page) includes these definitions:
So a pipe symbol can be followed by an end-of-line and still be considered part of a pipeline. |
||||
|
|
|
Hmm, I suppose yes, according to the test in bash in POSIX mode:
|
|||||
|
|
Yes it's in the POSIX shell grammar. You can also have more than one here-doc for the same command (some other examples use two
This is contrived (using 2 here-docs for stdin), but if you think of providing input for different file descriptors it immediately makes sense. |
|||
|
|
cmd <<EOF. partmaps.org/era/unix/award.html – tripleee May 21 '12 at 4:12cmd <<EOFcompletely fails to demonstrate the question! Perhapscmd << EOF | cmd2would be more appropriate. – William Pursell Mar 13 at 16:30