Find files created today

1 · Benjamin Cane · July 14, 2011, 2:54 a.m.
I figured I would start a new category for command line quickies. Here is one that I have found very useful. # find ./ -type f -daystart -ctime -1 This is a very nice way of finding files created today. Now this command differs from the command below. # find ./ -type f -ctime -1 The -daystart flag will tell find to use the beginning of the day when searching for files created today....