Question: How could you get a list of all .html files in your tree?

  1. `find . -type html`
  2. `find . -name *.html`
  3. `find *.html`
  4. `find . -name \*.html -print`

Answer: The correct answer of the above question is Option D:`find . -name \*.html -print`