Comments on: 11 Xargs Command Examples in Linux https://www.linuxtechi.com/xargs-command-with-examples/ Sun, 08 Mar 2020 08:40:19 +0000 hourly 1 By: Dominik https://www.linuxtechi.com/xargs-command-with-examples/#comment-174 Tue, 16 Sep 2014 19:43:13 +0000 http://www.linuxtechi.com/?p=2509#comment-174 my favorite feature of xargs is parallelization, e.g. I use

find . -name “*.MTS” -print0 | xargs -n1 -0 -P 2 ~/skritps/mts2webm.sh

to convert my videos using two cores.

]]>