It's called "trv" (for "traverse"). It will recursively traverse a
   directory tree and execute in each subdirectory the command passed
   as an argument.

How is this different from say,

for x in `find . -type d`; do (cd $x; COMMAND); done

This might be a bit longer, but it is more flexible.

Cheers!


_______________________________________________
Bug-coreutils mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-coreutils

Reply via email to