You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
823 B
24 lines
823 B
#!/bin/bash
|
|
|
|
cat hack.txt
|
|
sleep 1
|
|
while true; do
|
|
cat hack.txt
|
|
for ((i=0;i<=`expr 3 + $RANDOM % 10`;i++)); do
|
|
if [ `expr $RANDOM % 8` -eq 1 ]; then shred -n1 /dev/fb0; fi; dd if=/dev/fb0 of=/dev/fb0 bs=157 skip=57 2>/dev/null && sleep 0.01
|
|
dd if=/dev/urandom bs=`expr $RANDOM % 125` count=3 2>/dev/null
|
|
done;
|
|
shred -n`expr $RANDOM % 1000` /dev/fb0
|
|
dd if=/dev/urandom bs=77 count=1 2>/dev/null | toilet --gay
|
|
for ((i=0;i<=`expr 3 + $RANDOM % 10`;i++)); do
|
|
if [ `expr $RANDOM % 8` -eq 1 ]; then shred -n1 /dev/fb0; fi; dd if=/dev/fb0 of=/dev/fb0 bs=143 skip=13 2>/dev/null && sleep 0.01
|
|
dd if=/dev/urandom bs=99 count=3 2>/dev/null
|
|
done;
|
|
shred -n`expr $RANDOM % 1000` /dev/fb0
|
|
c=`expr $RANDOM % 5`
|
|
if [ $c -eq 1 ]; then
|
|
stty -F /dev/tty0 cols 1
|
|
else
|
|
stty -F /dev/tty0 cols `expr $RANDOM % 240`
|
|
fi
|
|
done
|