fork download
  1. read a b
  2. if [$a -gt $b]
  3. then
  4. echo "a is greatest"
  5. else
  6. echo "b is greatest"
  7. fi
Success #stdin #stdout #stderr 0.01s 5352KB
stdin
10 35
stdout
b is greatest
stderr
./prog.sh: line 2: [10: command not found