vstup/matrixový-spořič.sh
author František Kučera <franta-hg@frantovo.cz>
Thu, 05 Jan 2012 16:24:56 +0100
changeset 50 ae8222d2c903
parent 43 4a4364826e59
child 83 b8e5f8f9c77b
permissions -rwxr-xr-x
Tabulek #15: více tabulátorů.

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