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.
例如,我知道我要查找的文件以数据开头,20131111并且我知道文件以 结尾.log,但我不知道完整的文件名,
20131111
.log
什么是 unix 命令,它可以让我查看所有以该日期开头或包含该日期并以.log.
像这样,例如:
find /certain/path -type f -name "20131111*.log"
-type f
-name "20131111*.log"
log