vstup/matrixový-spořič.sh
author František Kučera <franta-hg@frantovo.cz>
Wed, 08 Feb 2012 10:16:04 +0100
changeset 89 86e00409add5
parent 87 25dec6931f18
permissions -rwxr-xr-x
Přehled verzí

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