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.

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