Why use U* over VMS
larry hughes
hughes at copper.ucs.indiana.edu
Tue Nov 6 02:43:34 AEST 1990
In article <1380 at tharr.UUCP> sweh at tharr.UUCP (Stephen Harris) writes:
>How in VMS do you have filters and pipelines?
>eg, what would be the VMS (DCL?) equivalent of
> getso - | tbl | pic | eqn | rof | col | sqps | lpr -Ppost < file
>
>Is there an equivalent, or would it need a lot of temporary files?
Yes, you would need a lot of temporary files. The output of each
step would have to redirected to a file (ala $ DEFINE/USER SYS$OUTPUT
filename) and then the temp file would have to be redirected as input
to the next step (ala $ DEFINE/USER SYS$INPUT filename). And, don't
forget to delete the temp files!
(Yes, this is slightly worse that the way that MS-DOS does it...at least
DOS makes the temp file usage transparent.)
//=========================================================================\\
|| Larry J. Hughes, Jr. || hughes at ucs.indiana.edu ||
|| Indiana University || ||
|| University Computing Services || "The person who knows everything ||
|| 750 N. State Road 46 Bypass || has a lot to learn." ||
|| Bloomington, IN 47405 || ||
|| (812) 855-9255 || Disclaimer: Same as my quote... ||
\\==========================================================================//
More information about the Comp.unix.programmer
mailing list