Linux find command to move files

linux

I have a folder with lots of images,I want to move all images which filename contains "cover" and size is bigger than 100K to /root/img. Below command can move all the files that filename contains "cover" but without size condition.My questions is how to combine with condition that image's size is bigger than 100K.thank you!

find . -name '*cover*' -exec mv '{}' /root/img  \;

Best Answer

find . -name '*cover*' -size +100k -exec mv '{}' /root/img \;

This command will move any file that contains the name "cover" and is greater than 100K.

Related Question