Created
October 13, 2017 16:16
-
-
Save scottbw/5618535dcbdf4654b3420a005722adf4 to your computer and use it in GitHub Desktop.
This file contains 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
FILES=*.html | |
for f in $FILES | |
do | |
echo "Processing $f file..." | |
# take action on each file. $f store current file name | |
java -jar htmlcleaner-2.21.jar src=$f dest=$f.cleaned outputtype=htmlsimple | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment