We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b7ec5f commit 5eda7b0Copy full SHA for 5eda7b0
pages/common/less-than.md
@@ -9,7 +9,7 @@
9
10
- Create a here document and pass that into `stdin` (requires a multiline command):
11
12
-`{{command}} << {{EOF}} <Enter> {{multiline_data}} <Enter> {{EOF}}`
+`{{command}} << {{EOF}} <Enter> {{multiline_text}} <Enter> {{EOF}}`
13
14
- Create a here string and pass that into `stdin` (achieves the same effect as `echo string |`):
15
@@ -26,3 +26,7 @@
26
- Disregard leading tabs (good for scripts with indentation but does not work for spaces):
27
28
`cat <<- {{EOF}} > {{path/to/file.txt}} <Enter> {{multiline_data}} <Enter> {{EOF}}`
29
+
30
+- Pass command output to a program as a file descriptor:
31
32
+`diff <({{command1}}) <({{command2}})`
0 commit comments