How could you get a list of all .html files in your tree?
find . -type html
find *.html
find . -name \*.html -print The second seems well, but will expand the \* if there is any .html file on your working directory.
find . -name \*.html -print
The second seems well, but will expand the \* if there is any .html file on your working directory.
find . -name *.html