root/vstup/matrixový-spořič.sh @ 83:b8e5f8f9c77b

Revision 83:b8e5f8f9c77b, 173 bytes (checked in by František Kučera <franta-hg@…>, 12 years ago)

Zvýrazňování syntaxe #12 / pre: odsazení (tabulátor) bude 4 znaky (dříve 8).

Line 
1#!/bin/bash
2# Matrixový spořič :-)
3
4case "$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;;
15esac
Note: See TracBrowser for help on using the browser.