vstup/matrixový-spořič.sh
author František Kučera <franta-hg@frantovo.cz>
Fri, 06 Jul 2012 22:29:00 +0200
changeset 116 12679d1f803d
parent 87 25dec6931f18
permissions -rwxr-xr-x
Added signature for changeset eb64393ed54e

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