用find的-newer参数

例如要删除当前目录下2014年3月份的文件


  1. 创建两个文件:

    touch -t 201402282359 file1

    touch -t 201404010000 file2

  2. find . -newer file1 ! -newer file2 | xargs ls -al