rusty-jeep: init

This commit is contained in:
2023-01-07 09:18:39 +01:00
parent 84ad803482
commit c8e80b34c0
6 changed files with 1134 additions and 0 deletions

22
rusty-jeep/alarm Executable file
View File

@@ -0,0 +1,22 @@
#! /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
done | ./target/debug/rusty-jeep 1
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)
done | ./target/debug/rusty-jeep 1