vstup/matrixový-spořič.sh
author František Kučera <franta-hg@frantovo.cz>
Sat, 14 Jan 2012 17:56:27 +0100
changeset 85 9d8b6055150a
parent 83 b8e5f8f9c77b
child 87 25dec6931f18
permissions -rwxr-xr-x
lepší odkaz na dokumentaci maker
     1 #!/bin/bash
     2 # Matrixový spořič :-)
     3 
     4 case "$1" in
     5 	start)
     6 		echo -e "\033[22;32m";
     7 		cat /dev/urandom | hexdump;
     8 ;;
     9 	stop)
    10 		echo -e "\033[0m";
    11 ;;
    12 	*)
    13 		$0 start;
    14 ;;
    15 esac