假設在同一天修改/創建文件,是否有辦法在Linux中獲取只修改時間大於5的文件?在基於修改的Linux中查找文件TIme
回答
你可以在最後一天find/-type f -mtime -1
或
## (year 2014 April day 05 time 05:00:00)
touch -t 201404040500.00 ~/myfile
## Find all files newer then myfile
find/-newer ~/myfile
希望幫助
謝謝,工作完美。 –
如果你有GNU find
那麼你可以做:
find . -name "*" -type f -newermt "2014-04-04 05:00:00"
從man
頁:
-newerXY參考 比較參照當前文件的時間戳。 參考參數通常是文件的名稱(並且其中一個時間戳用於比較),但它也可能是描述絕對時間的 字符串。對於其他字母,X和Y是佔位符 ,這些字母選擇哪個時間屬於 ,以便如何使用引用來進行比較。
a The access time of the file reference B The birth time of the file reference c The inode status change time of reference m The modification time of the file reference t reference is interpreted directly as a time Some combinations are invalid; for example, it is invalid for X to be t. Some combinations are not implemented on all systems; for example B is not supported on all systems. If an invalid or unsupported combination of XY is specified, a fatal error results. Time specifications are interpreted as for the argu‐ ment to the -d option of GNU date. If you try to use the birth time of a reference file, and the birth time cannot be deter‐ mined, a fatal error message results. If you specify a test which refers to the birth time of files being examined, this test will fail for any files where the birth time is unknown.
我試過同樣給出錯誤說'發現:無效謂詞' - 新詞'。這是一個錯誤,或者我發現不是GNU查找。 –
@DarkMatter看起來你沒有'find(GNU findutils)4.4.2'的最新版本。當你找到--version時,你會得到什麼輸出? –
版本詳細信息如下:GNU查找版本4.2.27 –
- 1. 查找在Linux最近30分鐘內修改過的文件
- 2. 在linux中修改文件之前檢查文件的內容
- 3. 在Linux中修改ext2文件結構
- 4. 修改Linux文件內容
- 5. 在批處理文件中查找基於時間的文件
- 6. 在Linux機器上查找在兩個日期之間修改的文件
- 7. 在HP-UX中查找在一小時內修改的文件
- 8. 查找文件夾中的最新修改文件
- 9. 找到文件的修改時間和修改後的用戶名linux
- 10. 基於文件的查找表
- 11. 查找基於全局的文件
- 12. 基於文件的查找表
- 13. 修改基於Excel在VB.NET
- 14. 修改Linux文件,並在Python保存
- 15. 在文件修改中尋找算法
- 16. 查找在Linux中一個類文件存在於JAR
- 17. 在.txt文件中查找最新的修改表
- 18. 查找在特定ClearCase分支中修改的所有文件?
- 19. 在Cocoa中查找文件的上次修改日期
- 20. 如何在Python中查找修改後的文件
- 21. Linux更改文件修改日期?
- 22. 在Opencart 2.0 OCMod中,修改後的文件不用於查看
- 23. 如何修改基於文件更改的grunt watch任務?
- 24. 如何修改time regexp?
- 25. 如何獲取基於php中最後修改的文件名?
- 26. 如何找到未修改的文件Linux
- 27. c linux檢查文件是否更新/更改/修改?
- 28. 基於ACL在CakePHP中修改視圖
- 29. 檢查文件的修改
- 30. Linux - 修改文件修改/訪問/更改時間
這個問題似乎是題外話,因爲它是關於Unix的修改後的文件使用情況,屬於http://unix.stackexchange.com或[超級用戶](http://superuser.com) – Raptor