# #### Rasmussen Software, Inc. #### # Print Capture printing for the Bash shell # using AnzioWin ver. 11.0, 12-31-96 # clear echo "Rasmussen Software, Inc. Print Capture Printing for Bash" echo " File To Print: $1" echo -e "\034capture wprn \035" # Note: This is not "quiet", all characters will # show, since all we are doing is capturing # screen I/O to default printer cat $1 echo -e "\034capture off \035" echo "Done."