############################################################# # findweb - find addresses of web services on this machine # J. David Schronce - Tue Oct 9 10:53:27 CDT 2007 ############################################################# # # APACHE_HOME should point to your base Apache/IHS install # directory # ############################################################# APACHE_HOME=/apps/ihs ############################################################# echo "\nSearching...\n" cd $APACHE_HOME if [ $# -gt 0 ]; then find . -type f -exec grep "\$//g' | grep $1 else echo "Locally available webservers" echo "----------------------------" find . -type f -exec grep "\$//g' fi echo "\n"