An easy way to do this is to create an alias (in csh), like this:
alias dosprint 'unix2dos \!* | lp'
Then to print a file you would type:
dosprint filename
It's pretty dangerous though, if you ever use wildcards or want to print
more than one file. Unix2dos will destroy the files if you pass it multiple
names on the command line. By writing a little script, you could make it safer
with:
#!/bin/sh
for i
do
unix2dos $i | lp
done
---
Don
Boeing Computer Services, Richland
(509) 376-6990