How to filter the output of ls command to display only files created in February?
touch –date “yyyy-mm-dd” /tmp/start touch –date “yyyy-mm-dd” /tmp/end find /my/path -type f -newer /tmp/start -not -newer /tmp/end or ls -l | grep ‘yyyy-mm-dd’
touch –date “yyyy-mm-dd” /tmp/start touch –date “yyyy-mm-dd” /tmp/end find /my/path -type f -newer /tmp/start -not -newer /tmp/end or ls -l | grep ‘yyyy-mm-dd’