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.
我需要查找最近 24 小时修改过的文件,但没有子文件夹。我有这个命令
find /var/www/html/test/ -mtime -1 -type f -exec ls -l {} \;
这将显示文件夹和子文件夹中的所有修改文件。但我只需要在过去 24 小时内修改过的特定文件夹。
所以请任何人帮助并告诉我在父文件夹中显示修改的命令。
只需添加-maxdepth 1
-maxdepth 1
find . -maxdepth 1 -mtime -1 -type f -exec ls -l {} \;