Files
to-hen/rusty-jeep/alarm

23 lines
495 B
Plaintext
Raw Normal View History

2023-01-07 09:18:39 +01:00
#! /bin/sh
#
# //Kübelwagen/alarm SLEEPARGS...
#
# where SLEEPARGS are passed to sleep(3)
#
set -euf
cd $(dirname $(readlink -f $0))
exec >&2
for i in `seq 8000 1000 10000`; do
echo $i 100
2026-03-14 07:19:49 +01:00
done | ./target/release/rusty-jeep 1
2023-01-07 09:18:39 +01:00
echo 'if you heard that sound, then goto sleep..^_^'
echo sleep "$@"
sleep "$@"
echo 'wake up!'
while :; do
echo $(echo "($(od -tu -An -N 2 /dev/urandom)%1000)+500"|bc) $(echo "($(od -tu -An -N 2 /dev/urandom)%500)+100"|bc)
2026-03-14 07:19:49 +01:00
done | ./target/release/rusty-jeep 1