Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何修改以下命令以查找最后一天修改的所有扩展名为 .log 的文件?
这是到目前为止的命令:
find . -mtime -1 -print
find . -name \*.log -mtime -1 -print
使用-name选项按特定名称查找文件
-name
find . -mtime -1 -name "*.log" -print
注意使用通配符*来查找所有以.log
*
.log
find . -mtime -1 -iname '*.log'
注意:由于 shell 扩展,使用双引号而不是单引号可能会产生意想不到的结果。