11 lines
119 B
Bash
11 lines
119 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
function main() {
|
||
|
|
||
|
while true; do
|
||
|
sleep 1m
|
||
|
done
|
||
|
}
|
||
|
|
||
|
source /usr/local/lib/functions.sh
|
||
|
main
|