ukázka/matrixový-spořič.sh
author František Kučera <franta-hg@frantovo.cz>
Sat, 06 Jun 2020 13:21:38 +0200
branchv_0
changeset 299 dd7aeff5ef0c
parent 120 4d33f14e99dd
permissions -rwxr-xr-x
fix typo: relasease → release

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