#!/bin/sh # lnapp v1.0 by [-mX-] FILE="lntraces.txt" SERVERS="www.cihost.com www.yahoo.com www.easynews.com www.alxhost.com www.sunet.se www.ntnu.no se.uk1.uk.geant.net uk.nl1.nl.geant.net nl.de1.de.geant.net se.pl1.pl.geant.net at.hu1.hu.geant.net" rm -rf lntraces.txt echo "This may take a few moments..." echo "" echo "After this has completed, please paste the output into their designated spot" echo "in the server_app.txt and email it to servers@link-net.org." echo "" for i in $SERVERS; do echo "$i" >> $FILE traceroute $i >> $FILE echo "" >> $FILE echo "" >> $FILE done