Forrest logo
back to context overview

textutil

List of commands for textutil:

  • textutil:tldr:075af textutil: Convert `foo.txt` into `foo.rtf`, using Times 10 for the font.
    $ textutil -convert ${rtf} -font ${Times} -fontsize ${10} ${path-to-foo-txt}
    try on your machine
    explain this command
  • textutil:tldr:399c8 textutil: Convert `foo.rtf` into `foo.html`.
    $ textutil -convert ${html} ${path-to-foo-rtf}
    try on your machine
    explain this command
  • textutil:tldr:60623 textutil: Load 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".
    $ textutil -cat ${html} -title "Several Files" -output ${path-to-index-html} *.rtf
    try on your machine
    explain this command
  • textutil:tldr:ab761 textutil: Display information about `foo.rtf`.
    $ textutil -info ${path-to-foo-rtf}
    try on your machine
    explain this command
back to context overview