How To Use `mv` Command with `find` command in Linux
find . -name '*<pattern here>*' -exec mv -t desination/ {} +
-tspecifies the destination path before the argument file (designated by{}infind){}is the current file matching thefindcommand criteria+thefindcommand line is built by appending each selected file name at the end; the total number of invocations of the ~mv~ command will be much less than the number of matched files.