#!/usr/bin/csh
if ( $#argv < 1 ) then
    echo usage: $0 '<audiofile>'
else
    cat $* > /dev/audio
endif
