linux find 10天内改动过的文件

find . -name "*.h" -mtime -10 -type f -print

 

find . -regex ".*\.\(c\|h\)" -mtime -10 -type f -print

转载于:https://www.cnblogs.com/ahuo/p/7159392.html