#!/bin/csh
#
if ($1 == "") then
	echo "usage: cprint [CHESS | FLUTE]"
else
	echo "Printing $1"
	/usr/lib/colord -i < Print/$1
endif

