ukázka/matrixový-spořič.sh
author František Kučera <franta-hg@frantovo.cz>
Mon, 27 Jul 2020 16:17:41 +0200
branchv_0
changeset 308 0c5723bc16bc
parent 120 4d33f14e99dd
permissions -rwxr-xr-x
template: diagram macro: remove localized alt/title

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