[Previous] [Contents] [Next]

textto

Convert text files to QNX 2, QNX 4, or DOS format (QNX)

Syntax:

textto -c|l|r [-q] [-z] file...

Options:

-c
Convert the specified files to DOS format (CR/LF).
-l
("el") Convert the specified files to QNX 4 format (LF).
-q
Be quiet; don't write the names of files being processed to standard output.
-r
Convert the specified files to QNX 2 format (RS).
-z
Strip all ^Z codes from the file.
file
The name of the file to be converted. Wildcards may be used.

Description:

The textto utility lets you convert text files to QNX 2, QNX 4/UNIX, or DOS format. The -z option can be used to strip ^Z codes from DOS-based files. Some DOS programs use this character as an end-of-file indicator.

Examples:

Change all QNX 2 record separators in prog.c to QNX 4 line feeds:

textto -l prog.c

Change all QNX 4 line feeds in all of the .h files in the current directory to QNX 2 record separators:

textto -r *.h

Change all QNX 4 line feeds in all of the .txt files in the current directory to DOS CR/LFs:

textto -c *.txt

Filter all QNX 4 line feeds in the standard input, converting them to DOS CR/LFs in the standard output:

textto -c - <inputfile >outputfile

See also:

tr


[Previous] [Contents] [Next]