[comp.os.vms] Related to writing control sequences from DCL

MCGUIRE@GRIN2.BITNET (05/21/87)

Here's another way to write records without CR/LF to the terminal.  Write
the records to a file, then run them through CONVERT as a filter.  The
following command procedure illustrates the technique.

        $       CONVERT/FDL=SYS$INPUT TEMPORARY-FILE SYS$OUTPUT
        RECORD
        CARRIAGE_CONTROL NONE
        $       EXIT

Ed <MCGUIRE@GRIN2.BITNET>