[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: Make action on all files in a dir recursively



On Sat, Sep 01, 2001 at 12:52:45PM +0400, Ingvarr Zhmakin wrote:
> Доброе утро.
> 
> Как бы попроще в bash сделать команду на все файлы в директории _рекурсивно_?
> 
>                    Ingvarr.

cd dir/
for f in $(find); do echo $f; done

-- 
WBR, Konstantin V. Sorokin
:wq



Reply to: