Make a Company List

Tom Neff tneff at bfmny0.UU.NET
Thu Sep 28 13:10:53 AEST 1989


You might get a hoot out of this.  I use it to make a master list
of organizations (companies) and their machines.  That way if I
want to flame the bozos at Yoyodyne Industries or find someone who
works at B Ark Software Inc.  I can get a fast start.

-- cut here -- cut here -- cut here -- cut here -- cut here --
:
# companies.sh - derive a list of companies from map files

# sample usage: companies.sh > outfile &

NEWSSPOOL=/usr/spool/news      # configure to suit yourself

cd $NEWSSPOOL/comp/mail/maps || exit 1

cat * | \
while read x machname
do
	while test "$x" != "#N"
	do read x machname
	done

	read x company

	while test "$x" != "#O"
	do read x company
	done

	echo $machname::$company
done | sort | uniq
-- cut here -- cut here -- cut here -- cut here -- cut here --

-- 
"The country couldn't run without Prohibition.       ][  Tom Neff
 That is the industrial fact." -- Henry Ford, 1929   ][  tneff at bfmny0.UU.NET



More information about the Alt.sources mailing list