首頁 >專題清單 >Linux 的find指令用法

Linux 的find指令用法

Linux的find指令用法有:1、查找目前路徑名字叫「hello.txt」的文件,用法為「find ./ -name 檔案名稱全程」;2.找出根目錄名字叫「hello.txt」的文件,用法為「find ./ -name 檔案名稱|xargs rm";3、尋找刪除名為「hello.txt」文件,用法為「find ./ -name 檔案名稱|xargs rm」。