Xargs
Xargs
Example Usage
find . -name "*.o" | xargs rm
Flags
-P
Number of processes to use
find . -name "*.o" | xargs -P 24 rm
-I
Not a good example, bit just to show the usage
find . -name "*.c" | xargs -I '{}' mv '{}' folder/'{}'