Dave's Brain

Browse - computer tips - find files changed today

Date: 2008mar17
Level: Beginner
Platform: Linux

Q.  Using the find command, how get I get the files what where changed today?

A.  This is what you want:

	find . -type f -mtime 0 -print

The "-print" isn't necessary.

Add a comment

Sign in to add a comment
Copyright © 2008, dave - Code on Dave's Brain is licensed under the Creative Commons Attribution 2.5 License.