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/ \;
find ./ -name "*.logfile" | xargs -i mv '{}' /my/really/great/implementation_scripts/log_directory/
(cf : http://bturnip.com/weblog/?p=248 )
or :