summaryrefslogtreecommitdiff
path: root/devdocs/bash/process-substitution.html
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-08-14 22:58:58 -0500
committerCraig Jennings <c@cjennings.net>2025-08-14 22:58:58 -0500
commit82ba818ff456bcd6d56a06226e3f27e98fbb55c3 (patch)
tree158cfc17b2f644a10f063cb546752cfaae12c97f /devdocs/bash/process-substitution.html
parent9278ddd4ea1a8b1a4c1edaa8894516e3f48d245b (diff)
downloaddotemacs-82ba818ff456bcd6d56a06226e3f27e98fbb55c3.tar.gz
dotemacs-82ba818ff456bcd6d56a06226e3f27e98fbb55c3.zip
removing all downloaded devdocs files
Diffstat (limited to 'devdocs/bash/process-substitution.html')
-rw-r--r--devdocs/bash/process-substitution.html12
1 files changed, 0 insertions, 12 deletions
diff --git a/devdocs/bash/process-substitution.html b/devdocs/bash/process-substitution.html
deleted file mode 100644
index 1272b010..00000000
--- a/devdocs/bash/process-substitution.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<h1 class="subsection">Process Substitution</h1> <p>Process substitution allows a process’s input or output to be referred to using a filename. It takes the form of </p>
-<div class="example"> <pre class="example">&lt;(list)
-</pre>
-</div> <p>or </p>
-<div class="example"> <pre class="example">&gt;(list)
-</pre>
-</div> <p>The process <var>list</var> is run asynchronously, and its input or output appears as a filename. This filename is passed as an argument to the current command as the result of the expansion. If the <code>&gt;(<var>list</var>)</code> form is used, writing to the file will provide input for <var>list</var>. If the <code>&lt;(<var>list</var>)</code> form is used, the file passed as an argument should be read to obtain the output of <var>list</var>. Note that no space may appear between the <code>&lt;</code> or <code>&gt;</code> and the left parenthesis, otherwise the construct would be interpreted as a redirection. Process substitution is supported on systems that support named pipes (<small>FIFO</small>s) or the <samp>/dev/fd</samp> method of naming open files. </p> <p>When available, process substitution is performed simultaneously with parameter and variable expansion, command substitution, and arithmetic expansion. </p><div class="_attribution">
- <p class="_attribution-p">
- Copyright &copy; 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.<br>Licensed under the GNU Free Documentation License.<br>
- <a href="https://www.gnu.org/software/bash/manual/html_node/Process-Substitution.html" class="_attribution-link">https://www.gnu.org/software/bash/manual/html_node/Process-Substitution.html</a>
- </p>
-</div>