Answers for "xargs in linux"

1

xargs in linux

$ find Pictures/tecmint/ -name "*.png" -type f -print0 | xargs -0 tar -cvzf images.tar.gz
Posted by: Guest on December-23-2020
3

xargs example

echo 'one two three' | xargs mkdir
ls
one two three
Posted by: Guest on October-22-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language