vstup/matrixový-spořič.sh
author František Kučera <franta-hg@frantovo.cz>
Wed, 08 Feb 2012 10:16:39 +0100
changeset 90 ae439159d833
parent 87 25dec6931f18
permissions -rwxr-xr-x
#15 Tabulky: čísla budou zarovnaná doprava

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