8 lines
82 B
Bash
Executable File
8 lines
82 B
Bash
Executable File
#!/usr/bin/env bash
|
|
while true
|
|
do
|
|
./launch.sh
|
|
echo sleeping...
|
|
sleep 3
|
|
done
|