ukázka/matrixový-spořič.sh
author František Kučera <franta-hg@frantovo.cz>
Tue, 11 May 2021 21:35:54 +0200
branchv_0
changeset 325 4560c5623d7d
parent 120 4d33f14e99dd
permissions -rwxr-xr-x
relpipe-tr-grep has new syntax since v0.18: --relation, --attribute, --value

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