TEXTUTIL(1) General Commands Manual TEXTUTIL(1)

textutiltext utility

textutil [command_option] [other_options] file ...

textutil can be used to manipulate text files of various formats, using the mechanisms provided by the Cocoa text system.

The first argument indicates the operation to perform, one of:

Show the usage information for the command and exit. This is the default command option if none is specified.
Display information about the specified files.
fmt
Convert the specified files to the indicated format and write each one back to the file system.
fmt
Read the specified files, concatenate them, and write the result out as a single file in the indicated format.
fmt is one of:
, , , , , , , , or

There are some additional options for general use:

ext
Specify an extension to be used for output files (by default, the extension will be determined from the format).
path
Specify the file name to be used for the first output file.
Specify that input should be read from stdin rather than from files.
Specify that the first output file should go to stdout.
IANA_name | NSStringEncoding
Specify the encoding to be used for plain text or HTML output files (by default, the output encoding will be UTF-8). NSStringEncoding refers to one of the numeric values recognized by NSString. IANA_name refers to an IANA character set name as understood by CFString. The operation will fail if the file cannot be converted to the specified encoding.
IANA_name | NSStringEncoding
Force all plain text input files to be interpreted using the specified encoding (by default, a file's encoding will be determined from its BOM). The operation will fail if the file cannot be interpreted using the specified encoding.
fmt
Force all input files to be interpreted using the indicated format (by default, a file's format will be determined from its contents).
font
Specify the name of the font to be used for converting plain to rich text.
size
Specify the size in points of the font to be used for converting plain to rich text.
--
Specify that all further arguments are file names.

There are some additional options for HTML and WebArchive files:

Do not load subsidiary resources.
Do not write out subsidiary resources.
url
Specify a base URL to be used for relative URLs.
t
Specify the time in seconds to wait for resources to load.
x
Specify a numeric factor by which to multiply font sizes.
(tag1, tag2, ...)
Specify which HTML elements should not be used in generated HTML (the list should be a single argument, and so will usually need to be quoted in a shell context).
n
Specify the number of spaces by which to indent nested elements in generated HTML (default is 2).

There are some additional options for treating metadata:

Do not copy metadata from input files to output files.
val
Specify the title metadata attribute for output files.
val
Specify the author metadata attribute for output files.
val
Specify the subject metadata attribute for output files.
(val1, val2, ...)
Specify the keywords metadata attribute for output files (the list should be a single argument, and so will usually need to be quoted in a shell context).
val
Specify the comment metadata attribute for output files.
val
Specify the editor metadata attribute for output files.
val
Specify the company metadata attribute for output files.
yyyy-mm-ddThh:mm:ssZ
Specify the creation time metadata attribute for output files.
yyyy-mm-ddThh:mm:ssZ
Specify the modification time metadata attribute for output files.


textutil -info foo.rtf

displays information about foo.rtf.


textutil -convert html foo.rtf

converts foo.rtf into foo.html.


textutil -convert rtf -font Times -fontsize 10 foo.txt

converts foo.txt into foo.rtf, using Times 10 for the font.


textutil -cat html -title "Several Files" -output index.html *.rtf

loads all RTF files in the current directory, concatenates their contents, and writes the result out as index.html with the HTML title set to "Several Files".

The textutil command exits 0 on success, and 1 on failure.

Some options may require a connection to the window server.

The textutil command first appeared in Mac OS X 10.4.

September 9, 2004 macOS