ukázka/matrixový-spořič.sh
author František Kučera <franta-hg@frantovo.cz>
Thu, 30 Jan 2020 14:57:09 +0100
branchv_0
changeset 293 b862d16a2e9f
parent 120 4d33f14e99dd
permissions -rwxr-xr-x
roadmap: update before v0.15

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