Created
July 7, 2015 16:26
-
-
Save roobixx/c94bbf471672030e8c41 to your computer and use it in GitHub Desktop.
nmapconvert
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for i in *.xml; do | |
xsltproc $i -o $i.htm | |
echo "Converting $i to HTML" | |
done | |
echo "" | |
echo "Conversion Complete" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment