NAME
rsym - MachTen symbol table filter

SYNOPSIS
rsym execfile offset

DESCRIPTION
Rsym is a filter that is usually used with nm to produce a load map
of a MachTen executable. execfile is the name of the executable,
and offset is the load address. This address can be found in the
ADDR field of the ps -l display. Rsym always writes output to the
file rsym.out in the current directory. Since a MachTen executable
remains relocatable until it is loaded into memory, rsym (along
with nm) is required to generate a load map for use with debuggers.

EXAMPLES
To generate a load map for ps with the offest of 0x4d6528,
rsym ps 0x4d6528; nm -n rsym.out > ps.loadmap; rm rsym.out

SEE ALSO
nm(1), ld(1), ps(1), a.out(5)

BUGS
Rsym should write its output on standard out.