Skip to content

Instantly share code, notes, and snippets.

@roobixx
Created July 7, 2015 16:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save roobixx/c94bbf471672030e8c41 to your computer and use it in GitHub Desktop.
Save roobixx/c94bbf471672030e8c41 to your computer and use it in GitHub Desktop.
nmapconvert
#!/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