Mirror a website on your hard drive:
Copy all the html files from your local mirror of a website to a single directory:
find . -name "*.html" -exec cp {} /home/teresita/Desktop/html \;
Convert all the html files in a directory to text:
for i in *.html; do lynx --dump "$i" > "${i%%.*}.txt";done