#!/bin/sh
#
# _very_ simple script to print to a CBM printer
#

PRN=4
SA=0

cbmctrl listen $PRN $SA
cat $* > /dev/cbm
cbmctrl unlisten 
