It may be a duplicate question but i could not find the solution for this i want to copy a last 3 months files from one directory to another directory but i could find only to l
Ex: select day 09/08/2017
ls -l -rw-rw-rw- 1 root system 943 Aug 09 02:59 File for j in `ls -l |awk '{ if ($7 == "09") print $9}'` do mv $j $Destination; done