#!/bin/bash
# fool: an infinit loop 20080415rm

while [ true ]; do 
	echo -e "\t\t\t     Oh no! Infinit Loop!"
	echo -e "\t\t\t\t\t YOU FOOL!"
	echo -e "\t\t\t\t\t  YOU FOOL!"
	echo -e "\t\t\t\t\t   YOU FOOL!"
	echo -e "\t\t\t\t\t    YOU FOOL!"
	echo -e "\t\t\t\t\t     YOU FOOL!"
	echo -e "\t\t\t\t\t      YOU FOOL!"
	echo -e "\t\t\t\t\t       Oh no! Infinit Loop!"
	echo -e "\t\t\t\t\t      YOU FOOL!"
	echo -e "\t\t\t\t\t     YOU FOOL!"
	echo -e "\t\t\t\t\t    YOU FOOL!"
	echo -e "\t\t\t\t\t   YOU FOOL!"
	echo -e "\t\t\t\t\t  YOU FOOL!"
	echo -e "\t\t\t\t\t YOU FOOL!"
done

#end of script

