xargs
- better than 
xargswhen running some commands for many files - do 
man xargsfor help 
some uses
convert all files from one extension to another using some other tool
ls -1 | sed -e 's/\.mkv//' | xargs -I _ ffmpeg -i _.mkv _.mp4
ls -1prints the files in a folder in one columnsed -e 's/\.mkv//'remove the extension.mkvfrom the file namexargs -I _ ffmpeg -i _.mkv _.mp4converts the file to amp4file voila!
gnome desktop environment hiding some useless collection of files
find /usr -name "*lsp_plug*desktop" 2>/dev/null | cut -f 5 -d '/' | xargs -I {} cp /tmp/1 ~/.local/share/applications/{}
find /usr -name "*lsp_plug*desktop" 2>/dev/nullprints the name of all.desktopfiles containing*lsp_plug*,2>/dev/nullignores any errorscut -f 5 -d '/'prints the name of files,-dsets the delimiter-fselects the fieldxargs -I {} cp /tmp/1 ~/.local/share/applications/{}copies the contents of file/temp/1but uses the manes we generated.