Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NapoleonWils0n/4055982 to your computer and use it in GitHub Desktop.
Save NapoleonWils0n/4055982 to your computer and use it in GitHub Desktop.
macosx: textutil convert to another format
#!/bin/sh
# ===========================================
# = textutil convert text to another format =
# ===========================================
# syntax
# textutil -convert fmt filename
# for example
textutil -convert doc filename.rtf
# Batch covert script
for i in *.rtf; do textutil -convert doc "$i";done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment