vote up 3 vote down star

Mac OS X stores some files with resource forks. I need to create a file with a resource fork. The trouble is, I need to create this file on the command line. Is anyone aware of how you can create a file with a resource form on the command line in Mac OS X?

flag

3 Answers

vote up 4 vote down

First, OS X doesn't really use resource forks... it supports named forks and HFS+ supports the resource forks, but that's mostly for backwards compatibility with OS 9 and old-style Carbon stuff... however, there are command line tools installed with the Developer Tools (so you'll have to install these... if you don't have them, you can get them from developer.apple.com).

See the man pages for the following tools:

ResMerger Rez RezDet RezWack

The man pages are installed with the developer tools, so

man Rez

in the terminal will work. The man pages are also available online:

Rez(1)

link|flag
vote up 0 vote down

As an alternative, you can make a copy of an existing file, fork and all, using ditto:

ditto -rsrc srcFile dstFile

link|flag
vote up 0 vote down

You can directly access the resource fork of a file using path/to/file/..namedfork/rsrc.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.