hello_world.sh 58 B

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