vstup/matrixový-spořič.sh
author František Kučera <franta-hg@frantovo.cz>
Sun, 08 Jul 2012 12:55:27 +0200
changeset 119 eec920c4bddf
parent 87 25dec6931f18
permissions -rwxr-xr-x
#20 Skriptování: čištění cesty

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