On Monday 09 December 2002 04:17 pm, Sol wrote: > If I've got these files: one.doc, two.doc and three.doc in ../docs/ and > want them to end up as HTML in ../html/ as one.html, two.html and > three.html, how can I do this with a single command? for f in *.doc; do wvHtml $f ../html/$(basename $f .doc).html; done Cheers; Leon