#!/bin/sh
#
# Generate a NetView "seed" file from the existing databasee.

ovmapdump -r \
	| grep GATEWAYS \
	| awk '{print $5 " \t# " $2}' \
	|	uniq -l > seedfile
