summaryrefslogtreecommitdiff
path: root/devdocs/bash/arithmetic-expansion.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/arithmetic-expansion.html
parent9278ddd4ea1a8b1a4c1edaa8894516e3f48d245b (diff)
downloaddotemacs-82ba818ff456bcd6d56a06226e3f27e98fbb55c3.tar.gz
dotemacs-82ba818ff456bcd6d56a06226e3f27e98fbb55c3.zip
removing all downloaded devdocs files
Diffstat (limited to 'devdocs/bash/arithmetic-expansion.html')
-rw-r--r--devdocs/bash/arithmetic-expansion.html8
1 files changed, 0 insertions, 8 deletions
diff --git a/devdocs/bash/arithmetic-expansion.html b/devdocs/bash/arithmetic-expansion.html
deleted file mode 100644
index 6634f237..00000000
--- a/devdocs/bash/arithmetic-expansion.html
+++ /dev/null
@@ -1,8 +0,0 @@
-<h1 class="subsection">Arithmetic Expansion</h1> <p>Arithmetic expansion allows the evaluation of an arithmetic expression and the substitution of the result. The format for arithmetic expansion is: </p> <div class="example"> <pre class="example">$(( expression ))
-</pre>
-</div> <p>The <var>expression</var> undergoes the same expansions as if it were within double quotes, but double quote characters in <var>expression</var> are not treated specially and are removed. All tokens in the expression undergo parameter and variable expansion, command substitution, and quote removal. The result is treated as the arithmetic expression to be evaluated. Arithmetic expansions may be nested. </p> <p>The evaluation is performed according to the rules listed below (see <a href="shell-arithmetic">Shell Arithmetic</a>). If the expression is invalid, Bash prints a message indicating failure to the standard error and no substitution occurs. </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/Arithmetic-Expansion.html" class="_attribution-link">https://www.gnu.org/software/bash/manual/html_node/Arithmetic-Expansion.html</a>
- </p>
-</div>