fork download
  1. a=10
  2. b=20
  3.  
  4. if [ $a -eq $b ]
  5. then
  6. echo "$a -eq $b : a is equal to b"
  7. else
  8. echo "$a -eq $b: a is not equal to b"
  9. fi
  10.  
Success #stdin #stdout 0s 19632KB
stdin
Standard input is empty
stdout
10 -eq 20: a is not equal to b