Linux命令之find

find是一個使用非常頻繁的命令。 // 查找所有txt文件 find . -name "*.txt" find . -name "*.txt" -ls // 查找所有txt文件和sh文件 find . -name "*.txt" -o -name "*.sh" // 查找所有txt文件(搜索目標爲文件) find . -type f -name "*.txt" // 查找所有目錄 find .
相關文章
相關標籤/搜索