From: utzoo!decvax!harpo!seismo!hao!cires!nbires!ut-ngp!jsq Newsgroups: net.sources Title: uuhosts Article-I.D.: ut-ngp.225 Posted: Wed Apr 13 21:46:19 1983 Received: Sun Apr 17 04:45:00 1983 Having gotten tired of looking through net.news.map by hand pretty quickly, I threw together the following hack. Does anybody have something better? if test $# -eq 0 then echo 'Usage: '$0' hostname' exit 1 fi cd /usr/spool/news/net.news.map for arg in $* do sed -n -e "/^Name: ${arg}$/,/^$/p" * done