11 lines
116 B
Bash
Executable file
11 lines
116 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
cd "$(dirname "$(realpath "$0")")"
|
|
|
|
|
|
until ping wikipedia.org -c 1
|
|
do sleep 1s
|
|
done
|
|
|
|
|
|
./refresh.ts
|