vstup/matrixový-spořič.sh
author František Kučera <franta-hg@frantovo.cz>
Sat, 07 Jan 2012 17:34:07 +0100
changeset 64 c069af21c4be
parent 43 4a4364826e59
child 83 b8e5f8f9c77b
permissions -rwxr-xr-x
Antovská úloha pro zobrazení výstupu ve www prohlížeči.

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