vstup/matrixový-spořič.sh
author František Kučera <franta-hg@frantovo.cz>
Tue, 10 Jan 2012 17:47:21 +0100
changeset 83 b8e5f8f9c77b
parent 43 4a4364826e59
child 87 25dec6931f18
permissions -rwxr-xr-x
Zvýrazňování syntaxe #12 / pre: odsazení (tabulátor) bude 4 znaky (dříve 8).

#!/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