File Move based on date

how to move file based on date in linux

You could use the find command.

i.e. file date is March 05, 2015

find /path/to/file -type -newermt 2015-03-05 -not -newermt 2015-03-06 -exec mv {} /path/to/folder \;