vstup/matrixový-spořič.sh
author František Kučera <franta-hg@frantovo.cz>
Wed, 11 Jan 2012 17:01:59 +0100
changeset 84 f866267d7b3c
parent 83 b8e5f8f9c77b
child 87 25dec6931f18
permissions -rwxr-xr-x
ROT13 – šifrování #18

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