summaryrefslogtreecommitdiff
path: root/tidy.sh
blob: 6fd975eb4597dd6d0418e754c77baefe7ebc13c9 (plain)
1
2
3
4
5
6
7
#!/usr/bin/env bash

if [ $# == 0 ]; then
  find www/ -name '*.html' -type f -print -exec tidy -mq -config tidy.conf '{}' \;
else
  tidy -mq -config tidy.conf $@
fi