diff options
Diffstat (limited to 'tidy.sh')
-rwxr-xr-x | tidy.sh | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -0,0 +1,13 @@ +#!/usr/bin/env bash + +if [ $# == 0 ]; then + find www/ -name '*.html' -type f -print -exec tidy -mq -config tidy.conf '{}' \; + if [ $? -lt 2 ]; then + exit 0 + fi +else + tidy -mq -config tidy.conf $@ + if [ $? -lt 2 ]; then + exit 0 + fi +fi |