UnixTips.net

* use my tips at your own risk !!

* use my tips at your own risk !!

Categories

  • Other (3)
  • Scripting (10)
  • Unix (70)
  • Wordpress (2)

Powered by Genesis

Find files newer than x days

# make a file dated Jan 25 – you change it to what you need touch -t 201101250000 dummy
find /path/to/files -newer dummy -exec ls -l {} \;

via Find files newer than x days – The UNIX and Linux Forums.