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