Linux Comm Let
# Linux let Command
[ Linux Command Manual](#)
## Command: let
The `let` command is a tool in BASH used for calculation. It executes one or more expressions. In variable calculations, you do not need to add `$` to represent the variable. If the expression contains spaces or other special characters, it must be quoted.
### Syntax Format
let arg [arg ...]
### Parameter Description:
arg: The expression to be executed.
### Examples:
Increment operation: **let no++**
Decrement operation: **let no--**
Shorthand forms **let no+=10, let no-=20** are equivalent to **let no=no+10, let no=no-20** respectively.
The following example calculates expressions `a` and `b` and outputs the results:
#!/bin/bashlet a=5+4let b=9-3 echo $a $b
The execution result of the above example is:
9 6
[ Linux Command Manual](#)
YouTip