Browse - computer tips - find files changed todayDate: 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.
Add a commentSign in to add a comment |