#!/bin/ksh #Which hosts on the local network export NFS directories? for host in `~mm64/public_html/x52.9547/src/localhosts 128.122.253.142 26 | awk '{print $2}'` do if showmount -e $host > /tmp/$$ 2> /dev/null then cat /tmp/$$ echo #Output an empty line after each host. fi rm /tmp/$$ done exit 0