Skip to content

Commit 1178af6

Browse files
authored
Shorten language on heredocs.
1 parent 01cb49f commit 1178af6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -156,11 +156,11 @@ Notes:
156156
}
157157
```
158158

159-
- 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:
159+
- 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:
160160
```
161-
cat << EOF
162-
These lines will
163-
print to stdout
161+
cat <<EOF
162+
input
163+
on multiple lines
164164
EOF
165165
```
166166

0 commit comments

Comments
 (0)