Showing posts with label find. Show all posts
Showing posts with label find. Show all posts

Wednesday, July 23, 2014

find + mv


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/ \;