find /in/this/folder/ -name '*.extention' -exec mv {} /move/to/folder/ \;This code finds all the files in a folder (recursively) that meet some criteria, and then moves them to a folder
find /in/this/folder/ -name '*.extention' -exec mv {} /move/to/folder/ \;
Archive