Computer Tips - Linux: Using the find command, get the files what where changed today

Date: 2008mar17 Update: 2025jul31 OS: Linux Language: bash Q. Linux: Using the find command, get the files what where changed today A. This is what you want:
find . -type f -mtime 0 -print
The "-print" isn't necessary.