find + mv Jul 23, 2014 • cm find ./ -name "*.logfile" | xargs -i mv '{}' /my/really/great/implementation_scripts/log_directory/ (cf : http://bturnip.com/weblog/?p=248 ) or : find ./ -name "*.logfile" -exec mv '{}' /my/really/great/implementation_scripts/log_directory/ \;