xargs -I '{}' mv dir1/'{}' dir2/'{}'
somecommand | xargs -s 50000 echo | xargs -I '{}' -s 100000 rm '{}'
echo 1 2 3 4 | xargs echo
find . -name "*.foo" -print0 | xargs -0 grep bar
find /tmp -name core -type f -print | xargs /bin/rm -f
find /etc -name "*.conf" | xargs ls –l
find /tmp -name core -type f -print0 | xargs -0 /bin/rm -f
find . -maxdepth 1 -type d -print | xargs echo Directories:
find /path -type f -print0 | xargs -0 rm
cat urls.txt | xargs wget –c
xargs sh -c 'emacs "$@" < /dev/tty' emacs
cut -d: -f1 < /etc/passwd | sort | xargs echo