unix find files with specific year

unix find files with specific year

# Find files based on Year (e.g. 2012)
find ./Documents -newermt 20120101

# ...get all the files with modification time in 2012

Source: unix.stackexchange.com