fork download
  1. #!/bin/bash
  2. PS4=':$?+'
  3. set -ex
  4. a=10
  5. b=9
  6. test $a -lt $b && false
  7. test $a -gt $b && false
  8. echo "111"
  9.  
Runtime error #stdin #stdout #stderr 0s 19632KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
:0+a=10
:0+b=9
:0+test 10 -lt 9
:1+test 10 -gt 9
:0+false