xargs in linux

C++
echo 'one two three' | xargs mkdir
ls
one two three$ find Pictures/tecmint/ -name "*.png" -type f -print0 | xargs -0 tar -cvzf images.tar.gz

Source

Also in C++: