> 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
> 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