vstup/matrixový-spořič.sh
author František Kučera <franta-hg@frantovo.cz>
Sat, 31 Dec 2011 18:55:19 +0100
changeset 42 be907afcf4f6
parent 40 487f13126b62
child 43 4a4364826e59
permissions -rw-r--r--
Zvýrazňování syntaxe: černá barva místo výchozí u popisky odkazu.
     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
    16