#!/bin/sh
# print_vhdl
# scan for readable vhdl and write out files
for file in *.vhdl
  do
    if test -r $file # only do readable files
      echo $file
      then
                lpr $file
    fi
  done



