# [[lynxit]] get a html file (eventually from internet) and transform it to text
find . -name "*.htm" | while read i
do
	lynx -dump -width=999 $i > $i.txt
#if you want only one big file:
#lynx -dump -width=999 $i >> result.txt

done