首頁 >運維 >linux運維 >Linux 的find指令怎麼用

Linux 的find指令怎麼用

小老鼠
小老鼠原創
2023-09-22 13:50:402102瀏覽

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

Linux 的find指令怎麼用

詳細的了解find指令用法及參數吧。

準備條件:

Centos7.9的作業系統的伺服器一台;

Xshell終端機已經連結了該伺服器;

1、尋找目前路徑名字叫做「hello.txt」的檔案;

用法:find ./ -name 檔名全程

例如:find ./ -name hello.txt

Linux 的find指令怎麼用

#批次尋找名為hello的檔案:

find ./ -name hel*

「*」為模糊匹配

Linux 的find指令怎麼用

2、尋找根目錄名字叫「hello.txt」的檔案;

用法:find / -name 檔名全程

例如:find / -name hello. txt

Linux 的find指令怎麼用

3、尋找刪除名為「hello.txt」檔案;

用法:find ./ -name 檔名|xargs rm

例如:find ./ -name hello.txt|xargs rm

以上是Linux 的find指令怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn