mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
7 lines
146 B
Plaintext
7 lines
146 B
Plaintext
|
#!/bin/ksh
|
||
|
# $ID$
|
||
|
# If you have Dave Raggett's "tidy" utility, this will tidy up
|
||
|
# the HTML files here.
|
||
|
for i in *.html ; do
|
||
|
tidy -m -i $i
|
||
|
done
|