Browse Source

Shorten language on heredocs.

pull/550/head
Joshua Levy 7 years ago committed by GitHub
parent
commit
1178af6816
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      README.md

8
README.md

@ -156,11 +156,11 @@ Notes:
} }
``` ```
- A "here document" is a code structure that is treated as if it were a separate file. They can be used to feed multiple lines into a command. Consider reading more about ["here documents"](https://www.tldp.org/LDP/abs/html/here-docs.html). A simple example is: - A "here document" allows [redirection of multiple lines of input](https://www.tldp.org/LDP/abs/html/here-docs.html) as if from a file:
``` ```
cat << EOF cat <<EOF
These lines will input
print to stdout on multiple lines
EOF EOF
``` ```

Loading…
Cancel
Save