[fa.info-mac] using MacDB

info-mac@uw-beaver (info-mac) (10/24/84)

From: Bill Croft <croft@safe>
Here's a shell file to create a 'b.map' from 'b.out'.  'b.map' is
then downloaded (macput -u b.map) to your disk containing MacDB and
read in with the 'symbols/open' menu item.

#!/bin/sh
#	macdbmap - create b.map from b.out for use by "MacDB, vers 8/3/84"
#
nm68 -nh b.out | sed -e '
s/ _\(.*\)$/ \1_/
s/^\([^ ]*\) \([^ ]*\) \([^ ]*\)$/	\3=1:\1/
s/:0*/:/
s/:$/:0/' > b.map