mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
8 lines
81 B
Bash
8 lines
81 B
Bash
#!/bin/bash
|
|
|
|
foo() {
|
|
echo "Hello Bash!"
|
|
}
|
|
|
|
while true; do foo; sleep 2; done
|