gpt4 book ai didi

linux - 为什么会发现. -name foo* 失败?

转载 作者:太空宇宙 更新时间:2023-11-04 04:36:54 25 4
gpt4 key购买 nike

好吧,可能是一个愚蠢的问题,但是为什么这不起作用?

find . -name Orna* -ls

看来“find”应该能够处理这个简单的请求......我在这里遗漏了什么吗?这应该是“find”命令的基本执行,但是linux很愚蠢,或者也许我很愚蠢。

最佳答案

使用Find命令的正确方法是以下短语

find . -type f -name "filename"  # this command used to find files from the curent dir 
find . -type d -name "dir name" # this command used to find dirs from the curent dir
find /. -type f -name "filename" # this command used to find files from the system
find /. -type d -name "dir name" # this command used to find dirs from the system

希望对你有帮助

关于linux - 为什么会发现. -name foo* 失败?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28332008/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com