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

Re: bash programming question



 
> You could put the find in a separate script:
> 
>     find . -print0 | xargs -r0 somestuff.sh

If you go that way, you can just
  find . -exec somestuff.sh {} \;

(You might need quotes around the {}.)


Jiri


Reply to: