15 lines
326 B
Bash
Executable File
15 lines
326 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
[[ $PWD == */scripts ]] && cd ..
|
|
|
|
echo > crash.log
|
|
while :; do
|
|
exit=0
|
|
while (( exit == 0 )); do
|
|
duration=$(( RANDOM % 10000 ))
|
|
python3 -m qutebrowser --debug ":later $duration quit" http://www.heise.de/
|
|
exit=$?
|
|
done
|
|
echo "$(date) $exit $duration" >> crash.log
|
|
done
|