hello_world.sh 68 B

123456
  1. #!/bin/bash
  2. 2 while true
  3. 3 do
  4. 4 echo 'hello world!'
  5. 5 sleep 1
  6. 6 done