14 lines
214 B
Bash
14 lines
214 B
Bash
|
#!/bin/sh
|
||
|
set -eu
|
||
|
cd "$(dirname "$0")"
|
||
|
cd ..
|
||
|
echo "Entering directory '$PWD'"
|
||
|
set -x
|
||
|
tidy \
|
||
|
--indent yes \
|
||
|
--quiet yes \
|
||
|
--show-filename yes \
|
||
|
--tidy-mark no \
|
||
|
--write-back yes \
|
||
|
www/*.html
|