You can use this command, and specify that you only find for files, not directory, and the file is older than one year
find /sourcedirectory -type f -mtime +365 -exec mv "{}" /destination/directory/ \;
You can use this command, and specify that you only find for files, not directory, and the file is older than one year
find /sourcedirectory -type f -mtime +365 -exec mv "{}" /destination/directory/ \;