Dave's Brain

Browse - computer tips - find files changed today

Date: 2008mar17
Level: Beginner
OS: 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.
What this info useful to you? You can donate to say thanks

Add a comment

Sign in to add a comment
Copyright © 2008-2012, dave - Code samples on Dave's Brain is licensed under the Creative Commons Attribution 2.5 License. However other material, including English text has all rights reserved.