fork download
  1. #!/bin/bash
  2.  
  3. false # will set $? to 1
  4. : # NOP ; will set $? to 0
  5. echo $?
  6.  
  7. false
  8. \: # not NOP? nope, still NOP
  9. echo $?
Success #stdin #stdout 0s 19632KB
stdin
Standard input is empty
stdout
0
0