fork download
  1. #!bin/bash
  2. read a
  3. while [ a -le 10 ] do
  4. echo $a
  5. a=$[ a + 1 ]
  6. done
  7.  
Runtime error #stdin #stdout 0.03s 5312KB
stdin
Standard input is empty
stdout
Standard output is empty