Tagged Questions
3
votes
1answer
1k views
bash: find -exec and filenames
I want to strip the HTML out of few hundred files.
Here's the command I've started with:
find -name *.html -exec w3m {} > w3m {}.html.out \;
The problem I've run into is that it created one ...