User Tools

Site Tools


products:ict:linux:shell_scripting:arithmetic

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
products:ict:linux:shell_scripting:arithmetic [2023/05/04 17:09] wikiadminproducts:ict:linux:shell_scripting:arithmetic [2023/05/04 17:13] (current) wikiadmin
Line 1: Line 1:
 +
 +====== Shell Scripting Arithmetic ======
 +
 +
 let is a builtin function of Bash that allows us to do simple arithmetic. It follows the basic format: let is a builtin function of Bash that allows us to do simple arithmetic. It follows the basic format:
  
Line 148: Line 152:
  
 Double Parentheses Double Parentheses
-<nowiki> 
  
 In the section on Variables we saw that we could save the output of a command easily to a variable. It turns out that this mechanism is also able to do basic arithmetic for us if we tweak the syntax a little. We do so by using double brackets like so: In the section on Variables we saw that we could save the output of a command easily to a variable. It turns out that this mechanism is also able to do basic arithmetic for us if we tweak the syntax a little. We do so by using double brackets like so:
  
 +<nowiki>
 $(( expression )) $(( expression ))
 +</nowiki>
  
 Here's an example to illustrate: Here's an example to illustrate:
Line 162: Line 167:
 # Basic arithmetic using double parentheses # Basic arithmetic using double parentheses
  
 +<nowiki>
 a=$(( 4 + 5 )) a=$(( 4 + 5 ))
 +</nowiki>
  
 echo $a # 9 echo $a # 9
  
 +<nowiki>
 a=$((3+5)) a=$((3+5))
 +</nowiki>
  
 echo $a # 8 echo $a # 8
  
 +<nowiki>
 b=$(( a + 3 )) b=$(( a + 3 ))
 +</nowiki>
  
 echo $b # 11 echo $b # 11
  
 +<nowiki>
 b=$(( $a + 4 )) b=$(( $a + 4 ))
 +</nowiki>
  
 echo $b # 12 echo $b # 12
  
 +<nowiki>
 (( b++ )) (( b++ ))
 +</nowiki>
  
 echo $b # 13 echo $b # 13
  
 +<nowiki>
 (( b += 3 )) (( b += 3 ))
 +</nowiki>
  
 echo $b # 16 echo $b # 16
  
 +<nowiki>
 a=$(( 4 * 5 )) a=$(( 4 * 5 ))
 +</nowiki>
  
 echo $a # 20 echo $a # 20
Line 192: Line 211:
 Let's break it down: Let's break it down:
  
 +<nowiki>
 a=$(( 4 + 5 )) a=$(( 4 + 5 ))
 +</nowiki>
  
 This is the basic format. As you can see we may space it out nicely for readability without the need for quotes. This is the basic format. As you can see we may space it out nicely for readability without the need for quotes.
  
 +<nowiki>
 a=$((3+5)) a=$((3+5))
 +</nowiki>
  
 As you can see, it works just the same if we take spacing out. As you can see, it works just the same if we take spacing out.
  
 +<nowiki>
 b=$(( a + 3 )) b=$(( a + 3 ))
 +</nowiki>
  
 We may include variables without the preceding $ sign. We may include variables without the preceding $ sign.
  
 +<nowiki>
 b=$(( $a + 4 )) b=$(( $a + 4 ))
 +</nowiki>
  
 Variables can be included with the $ sign if you prefer. Variables can be included with the $ sign if you prefer.
  
 +<nowiki>
 (( b++ )) (( b++ ))
 +</nowiki>
  
 This is a slightly different form. Here the value of the variable b is incremented by 1 (using the same mechanism illustrated under let). When we do this we don't need the $ sign preceding the brackets. This is a slightly different form. Here the value of the variable b is incremented by 1 (using the same mechanism illustrated under let). When we do this we don't need the $ sign preceding the brackets.
  
 +<nowiki>
 (( b += 3 )) (( b += 3 ))
 +</nowiki>
  
 This is a slightly different form of the previous example. Here the value of the variable b is incremented by 3. It is a shorthand for b = b + 3. This is a slightly different form of the previous example. Here the value of the variable b is incremented by 3. It is a shorthand for b = b + 3.
Line 219: Line 249:
 Unlike other methods, when we do multiplication we don't need to escape the * sign. Unlike other methods, when we do multiplication we don't need to escape the * sign.
  
-</nowiki> 
  
 ./expansion_example.sh ./expansion_example.sh
Line 277: Line 306:
 print out the result of the expression. print out the result of the expression.
  
 +<nowiki>
 $(( expression )) $(( expression ))
 +</nowiki>
  
 Return the result of the expression. Return the result of the expression.
products/ict/linux/shell_scripting/arithmetic.1683202162.txt.gz · Last modified: 2023/05/04 17:09 by wikiadmin