info:lynxit.sh

# [[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
  • info/lynxit.sh.txt
  • Dernière modification : 2018/07/18 09:46
  • de radeff