Infos howto use xargs (german): http://www.pl-berichte.de/t_shell/xargs.html
Some examples:
find /somedir -atime +50 -print0 | xargs -0 --no-run-if-empty rm;