vstup/matrixový-spořič.sh
author František Kučera <franta-hg@frantovo.cz>
Sat, 14 Jan 2012 22:52:24 +0100
changeset 88 e856711b66e9
parent 87 25dec6931f18
permissions -rwxr-xr-x
ROT13 – šifrování #18: lepší titulek.

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