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
_______________________________________________
vox-tech mailing list
[EMAIL PROTECTED]
http://lists.lugod.org/mailman/listinfo/vox-tech

Reply via email to