Difference between revisions of "Bash operators"

From wikieduonline
Jump to navigation Jump to search
(Created page with " * <code>&&</code> and <code>||</code> operator == See also == * {{Bash}} Category:Bash")
 
 
(One intermediate revision by the same user not shown)
Line 4: Line 4:
  
  
 +
n=55
 +
if (( $n >= 55 ))
 +
then
 +
  echo "The number is greater than or equal to 55"
 +
else
 +
  echo "The number is less than 55"
 +
fi
 +
 +
 +
== Activities ==
 +
* Review: https://tldp.org/LDP/abs/html/comparison-ops.html
  
  

Latest revision as of 13:24, 26 October 2020

Advertising: