vstup/matrixový-spořič.sh
author František Kučera <franta-hg@frantovo.cz>
Thu, 05 Jan 2012 11:01:25 +0100
changeset 43 4a4364826e59
parent 40 487f13126b62
child 83 b8e5f8f9c77b
permissions -rwxr-xr-x
Zvýrazňování syntaxe #12: zdrojáky ze souborů budeme načítat už v XSLT ne až v Javě.

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