ukázka/matrixový-spořič.sh
author František Kučera <franta-hg@frantovo.cz>
Sun, 20 Oct 2013 22:22:55 +0200
changeset 133 8628ef19f353
parent 120 4d33f14e99dd
permissions -rwxr-xr-x
wiki: konstanta utf-8

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