summaryrefslogtreecommitdiff
path: root/devdocs/bash/shell-operation.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/shell-operation.html
parent9278ddd4ea1a8b1a4c1edaa8894516e3f48d245b (diff)
downloaddotemacs-82ba818ff456bcd6d56a06226e3f27e98fbb55c3.tar.gz
dotemacs-82ba818ff456bcd6d56a06226e3f27e98fbb55c3.zip
removing all downloaded devdocs files
Diffstat (limited to 'devdocs/bash/shell-operation.html')
-rw-r--r--devdocs/bash/shell-operation.html13
1 files changed, 0 insertions, 13 deletions
diff --git a/devdocs/bash/shell-operation.html b/devdocs/bash/shell-operation.html
deleted file mode 100644
index a59209f9..00000000
--- a/devdocs/bash/shell-operation.html
+++ /dev/null
@@ -1,13 +0,0 @@
-<h1 class="subsection">Shell Operation</h1> <p>The following is a brief description of the shell’s operation when it reads and executes a command. Basically, the shell does the following: </p> <ol> <li> Reads its input from a file (see <a href="shell-scripts">Shell Scripts</a>), from a string supplied as an argument to the <samp>-c</samp> invocation option (see <a href="invoking-bash">Invoking Bash</a>), or from the user’s terminal. </li>
-<li> Breaks the input into words and operators, obeying the quoting rules described in <a href="quoting">Quoting</a>. These tokens are separated by <code>metacharacters</code>. Alias expansion is performed by this step (see <a href="aliases">Aliases</a>). </li>
-<li> Parses the tokens into simple and compound commands (see <a href="shell-commands">Shell Commands</a>). </li>
-<li> Performs the various shell expansions (see <a href="shell-expansions">Shell Expansions</a>), breaking the expanded tokens into lists of filenames (see <a href="filename-expansion">Filename Expansion</a>) and commands and arguments. </li>
-<li> Performs any necessary redirections (see <a href="redirections">Redirections</a>) and removes the redirection operators and their operands from the argument list. </li>
-<li> Executes the command (see <a href="executing-commands">Executing Commands</a>). </li>
-<li> Optionally waits for the command to complete and collects its exit status (see <a href="exit-status">Exit Status</a>). </li>
-</ol><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/Shell-Operation.html" class="_attribution-link">https://www.gnu.org/software/bash/manual/html_node/Shell-Operation.html</a>
- </p>
-</div>