On Mon, Jun 23, 2003 at 10:54:58AM -0700, Richard Crawford wrote: > Suppose I have a short script as such: > > find . -name 'wwwboard.html' -print | while read i > do > print $i > done > > how can I pass the name of the directory where $i lurks to another > variable, such as $dir? dir=`dirname $i` ? See dirname(1), basename(1). -Micah