2021-08-01 02:40:50 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
while true; do
|
2024-07-20 13:26:36 +00:00
|
|
|
export joke=$(curl -s -H "Accept: text/plain" https://icanhazdadjoke.com/)
|
|
|
|
timeout --foreground -vs9 3m watch -tn60 ./dash.sh
|
2021-08-01 02:40:50 +00:00
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
reset
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|