12 lines
164 B
Bash
12 lines
164 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
|
||
|
while true; do
|
||
|
export joke=`shuf -n 1 jokes.txt`
|
||
|
timeout --foreground -vs9 5m watch -tn60 ./dash.sh
|
||
|
if [ $? -eq 0 ]; then
|
||
|
reset
|
||
|
break
|
||
|
fi
|
||
|
done
|