ukázka/matrixový-spořič.sh
author František Kučera <franta-hg@frantovo.cz>
Sat, 28 Dec 2019 16:19:41 +0100
branchv_0
changeset 288 5cf3a702f47d
parent 120 4d33f14e99dd
permissions -rwxr-xr-x
examples: AWKing through a XML file

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