mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 04:43:10 +00:00
Extend documentation for the math function
darcs-hash:20061212171037-ac50b-1b9d0f51b284925fe0fc3020774ec32bb1414ce7.gz
This commit is contained in:
parent
d3dd9400e3
commit
b3fa76c1be
1 changed files with 7 additions and 2 deletions
|
@ -8,8 +8,13 @@
|
|||
|
||||
math is used to perform mathematical calcualtions. It is only a very
|
||||
thin wrapper for the bc program, that makes it possible to specify an
|
||||
expression from the commandline without using non-standard extensions
|
||||
expression from the command line without using non-standard extensions
|
||||
or a pipeline. Simply use a command like <code>math 1+1</code>.
|
||||
|
||||
For a description of the syntax supported by math, see the manual for
|
||||
the bc program.
|
||||
the bc program. Keep in mind that parameter expansion takes place on
|
||||
any expressions before they are evaluated. This can be very useful in
|
||||
order to perform calculations involving environment variables or the
|
||||
output of command substitutions, but it also means that parenthesis
|
||||
have to be escaped.
|
||||
|
||||
|
|
Loading…
Reference in a new issue