fork download
  1. #!/bin/bash
  2. # your code goes here
  3.  
  4. a="Status: on"
  5. printf "$a\n"
  6. if [ "$a" = "Status: on" ]
  7. then echo "ok"
  8. else
  9. echo "not ok"
  10. fi
Success #stdin #stdout 0s 5072KB
stdin
Standard input is empty
stdout
Status: on
ok