From 1178af6816be1574d567e4287df8eeae16edb0c2 Mon Sep 17 00:00:00 2001 From: Joshua Levy Date: Sat, 7 Apr 2018 13:21:21 -0700 Subject: [PATCH] Shorten language on heredocs. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a36d3a1..5a65700 100644 --- a/README.md +++ b/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 -These lines will -print to stdout +cat <