vstup/matrixový-spořič.sh
author František Kučera <franta-hg@frantovo.cz>
Wed, 08 Feb 2012 17:58:17 +0100
changeset 91 1a70b4045a19
parent 87 25dec6931f18
permissions -rwxr-xr-x
Poznámky pod čarou.

#!/bin/bash
# Matrixový spořič :-)

case "$1" in
	start)
		echo -e "\033[22;32m";
		cat /dev/urandom | hexdump;
;;
	stop)
		echo -e "\033[0m";
;;
	*)
		$0 start;
;;
esac