mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-30 04:33:55 -06:00
9f7e27f5d4
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@2138 57a11ea4-9604-0410-9ed3-97b8803252fd
7 lines
146 B
Bash
Executable File
7 lines
146 B
Bash
Executable File
#!/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 |