diff options
| author | Craig Jennings <c@cjennings.net> | 2025-08-14 22:58:58 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-08-14 22:58:58 -0500 |
| commit | 82ba818ff456bcd6d56a06226e3f27e98fbb55c3 (patch) | |
| tree | 158cfc17b2f644a10f063cb546752cfaae12c97f /devdocs/bash/process-substitution.html | |
| parent | 9278ddd4ea1a8b1a4c1edaa8894516e3f48d245b (diff) | |
| download | dotemacs-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.html | 12 |
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"><(list) -</pre> -</div> <p>or </p> -<div class="example"> <pre class="example">>(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>>(<var>list</var>)</code> form is used, writing to the file will provide input for <var>list</var>. If the <code><(<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><</code> or <code>></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 © 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> |
