Moving multiple files based on the pattern

I want to search for a particular file name patterns and move them to a specific folder, is it possible to do it with awk or sed?

find -type f -name '*pattern*' -exec mv '{}' /path/to/destination ';'
1 Like