ukázka/matrixový-spořič.sh
author František Kučera <franta-hg@frantovo.cz>
Tue, 04 Aug 2020 00:58:46 +0200
branchv_0
changeset 312 0a65e49a076f
parent 120 4d33f14e99dd
permissions -rwxr-xr-x
examples: Querying an RDF triplestore using SPARQL: @id for the turtle part

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