Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

resmerger(1) [osx man page]

RESMERGER(1)						    BSD General Commands Manual 					      RESMERGER(1)

NAME
/usr/bin/ResMerger -- Merges resource forks or files into one resource file SYNOPSIS
/usr/bin/ResMerger [-fileCreator <fileCreator>] [-fileType <fileType>] [-[a]ppend] [-srcIs RSRC | DF] [-dstIs RSRC | DF] file ... -o <dest-file> DESCRIPTION
The /usr/bin/ResMerger command merges the Carbon Resource Manager resource data in multiple files into a single file. The output file may be one of the input files. The /usr/bin/ResMerger command takes the following flags and arguments: -fileCreator <fileCreator> Sets the HFS creator type of the output file. The default is '????'. -fileType <fileType> Sets the HFS file type of the output file. The default is '????'. -[a]ppend Append to output file, rather than overwriting it. -srcIs RSRC | DF The fork in which to look for resources in the input file(s). The default is the data fork (DF). -dstIs RSRC | DF The fork in which to write resources in the output file. The default is the data fork (DF). -skip <type> Specifies resource type to skip during the resource merge. May be used multiple times, to specify multiple resource types to skip. file Specifies one or more input files. Note that as there is only one srcIs flag, the input files must be homogenous, that is, the resources must be in the same fork of all input files. -o <dest-file> Specifies the output file. If the fork designated by -dstIs exists, it is overwritten unless the -a flag is provided; if it does not exist, it is created. SEE ALSO
Rez(1), DeRez(1), RezWack(1), UnRezWack(1), SplitForks(1) Mac OS X April 12, 2004 Mac OS X

Check Out this Related Man Page

FIXUPRESOURCEFORKS(1)					    BSD General Commands Manual 				     FIXUPRESOURCEFORKS(1)

NAME
/System/Library/CoreServices/FixupResourceForks -- Join AppleDouble files into two-fork HFS resource files. SYNOPSIS
/System/Library/CoreServices/FixupResourceForks [-q[uiet]] [-nosetinfo] [-nodelete] path ... DESCRIPTION
FixupResourceForks is to SplitForks what matter is to antimatter. Given one or more directories that reside on an HFS or Extended HFS ("HFS+") volume, it scans those directories for AppleDouble files and, if found, rejoins them into two-fork resource files. The resource fork data can then be accessed with normal Carbon Resource Manager calls, be processed with DeRez(1), and accessed from the POSIX file system interface through the ..namedfork/rsrc path mechanism. /System/Library/CoreServices/FixupResourceForks takes the following flags and arguments: -q[uiet] Suppress verbose diagnostics to standard output. -nosetinfo Do not set file system metadata (type, creator, flags, permissions) from the data in the AppleDouble file. -nodelete Leave the AppleDouble files in the directory after copying their resource data into the resource fork of the main file. path ... One or more directory paths. Note that FixupResourceForks only acts on entire directories, not in individual files. FILES
foo Data fork of file 'foo' NOTES
SplitForks will fail with error 2 if the designated file is not on an HFS or Extended HFS file system volume. SEE ALSO
FixupResourceForks(1), MvMac(1), CpMac(1) STANDARDS
Consult RFC 1740 for details on AppleSingle/AppleDouble formats. Mac OS X April 12, 2004 Mac OS X
Man Page

8 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Convert Binary data to ascii data

Friends, I've tried on solaris, but I could n't get ascii data dd if=binaryinputfile bs=1 skip=3800 count=4 | od -t u4 output : INDBU3:/usr/users/FTAMUSER/kk $ dd if=SMP20041006173649188151 bs=1 skip=3800 count=4 | od -t u4 4+0 records in 4+0 records out 0000000 0000000000 0000004... (4 Replies)
Discussion started by: krishna
4 Replies

2. Programming

multiple forks and printf question

Hello *NIX gurus, I have a slight perplexing problem with multiple forks giving different results... Here is the deal. From what I undestand, a fork() call starts executing from the next instruction that follows the fork() call. That means it inherits the PC counter register value of the... (4 Replies)
Discussion started by: navigator
4 Replies

3. Programming

fork multiple shells

Hi, i was trying to play with fork,exec and signal for spawning multiple new shells, but it seems that i'm doing blunder somewhere. <sample code> 1 /* 2 * The idea is to fork multpile(equal to $ULIMIT) childs 3 * and replace their images with process:csh 4 * during this the parent... (3 Replies)
Discussion started by: amit4g
3 Replies

4. Shell Programming and Scripting

building output file from multiple input files

Hi there, I am trying to figure out a way to combine multiple sources with different data on a single file, and I am trying to find the best way to do it. I have multiple files, let's say A, B, C and D. A has a field in common with B, B has a field in common with C, and C has a field in... (2 Replies)
Discussion started by: ppucci
2 Replies

5. UNIX for Dummies Questions & Answers

awk {print $NF} output??

Hi, I am trying to debug an old script and have found the problem lies within this function: isIdoc() { # validate the file type fileType=`file $1 | awk '{print $NF}'` && echo 0 || echo 1 } My question is, how can I determine what is in the variable $fileType ? The program is... (1 Reply)
Discussion started by: vervette
1 Replies

6. UNIX for Dummies Questions & Answers

Fork: Resource Temporarily Unavailable

I wrote a script that works most of the time but gave me fork: resource temporarily unavailable some of the time. I restarted my computer and now it runs fine but googling "fork: resource temporarily unavailable" and looking on the forums has not actually helped me figure out what exactly I... (3 Replies)
Discussion started by: monstrousturtle
3 Replies

7. UNIX for Dummies Questions & Answers

Problem with fork() while reading files

Good evening everyone. I have my finals and I'm facing a problem: I have a for cycle that is supposed to fork 2 children but somehow it forks only the first one. What am I doing wrong ? #include <fcntl.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <time.h>... (1 Reply)
Discussion started by: pfpietro
1 Replies

8. Programming

[Solved] Problem with fork() while reading files

Good evening everyone. I have my finals and I'm facing a problem: I have a for cycle that is supposed to fork 2 children but somehow it forks only the first one. What am I doing wrong ? #include <fcntl.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <time.h>... (5 Replies)
Discussion started by: pfpietro
5 Replies