You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567891011121314 |
- #!/bin/sh
- # h2t, convert all htm and html files of a directory to text
-
- for file in `ls *.htm`
- do
- new=`basename $file htm`
- lynx -dump $file > ${new}txt
- done
- #####
- for file in `ls *.html`
- do
- new=`basename $file html`
- lynx -dump $file > ${new}txt
- done
|