How-To

Convert TXT, RTF, DOC and DOCX files with textutil

Batch converting a bunch of text files is no-one’s idea of fun.

Maybe someone’s sent you a tonne of documents that only open in a program you don’t have access to, or you need to share some Pages documents with a colleague who’s a die-hard Windows fan.

While you could work your way through these documents and change their formats one-by-one, you could also save yourself the time and effort, by converting them en masse with a single command.

In this article, I’ll show you how to quickly and easily convert any txt, html, rtf, rtfd, doc, docx, wordml, odt, or webarchive file, using your Mac’s built-in ‘textutil’ tool.


Convert a single file with textutil

While textutil is designed to take the pain out of mass file conversions, if you’re new to the command line then you may want to try converting a single file first.

You can only interact with textutil from the command line, so you’ll need to launch macOS’ Terminal:

  • Open a new Finder window.
  • Navigate to ‘Applications > Utilities.’
  • Double-click ‘Terminal.’

To convert a single file, type the following command into the Terminal window:

textutil -convert (desired file format) (full file path)

For example, if you had an essay.txt file stored on your Desktop, and you wanted to convert this file to DOC format, then you’d use the following:

textutil -convert doc /Users/myusername/Desktop/essay.txt

Then, press the ‘Enter’ key on your keyboard, and textutil will create an essay.doc file on the Desktop, without deleting the original.

If at a later date you needed to convert this essay.doc file into a Rich Text File (RTF), then you’d run the following command:

textutil -convert rtf /Users/myusername/Desktop/essay.doc

Save yourself some typing!

There’s a huge range of Terminal commands at your disposal, but many of them require you to type the complete file path for one or more files. Depending on where a file is stored on your Mac, this can involve a significant amount of typing, and if you get a single letter wrong then the command isn’t going to work as expected.

You can save yourself some typing, by finding the file in question, and then dragging/dropping it into the Terminal window, which will automatically add the complete file path, file name and file extension to your command.

For example, if you wanted to use this trick with the previous command (textutil -convert rtf /Users/myusername/Desktop/essay.doc), you’d need to:

  • Type textutil -convert rtf into the Terminal window.
  • Open a Finder window, and navigate to the Desktop/essay.doc file.
  • Drag and drop the essay.doc file into the Terminal window.
  • Press the ‘Enter’ key on your keyboard, and the command will run as normal.

Convert multiple text documents with a single command

In reality, if you only needed to convert a single text file, it’d probably be quicker to change the format manually. The real power of textutil, lies in how easy it is to convert multiple files, with a single command.

The easiest way to convert a bunch of text files, is to place them all in the same folder, and then use the following command:

textutil -convert (desired file format) (folder path)/*.(current file type)

For example, if you had a folder named ‘notes’ stored in your ‘Documents’ folder, which was full of TXT files that you wanted to convert to RTF, you’d run the following command:

textutil -convert rtf /Users/yourusername/Documents/notes/*.txt

This will create duplicates of all your TXT files, in RTF format, in the same folder as the original files.

Before you go

After spending over 20 years working with Macs, both old and new, theres a tool I think would be useful to every Mac owner who is experiencing performance issues.

CleanMyMac is highest rated all-round cleaning app for the Mac, it can quickly diagnose and solve a whole plethora of common (but sometimes tedious to fix) issues at the click of a button. It also just happens to resolve many of the issues covered in the speed up section of this site, so Download CleanMyMac to get your Mac back up to speed today.

mac-pc

About the author

Jessica Thornsby

Jessica Thornsby is a technical writer based in Sheffield. She writes about Android, Java, Kotlin and all things Apple. She is the co-author of O'Reilly's "iWork: The Missing Manual," and the author of "Android UI Design," from Packt Publishing.

Add Comment

Click here to post a comment

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.