Linux中的查詢命令

2021-06-21 20:02:23 字數 828 閱讀 3102

(1)which cmd-->shows the full path of (shell) commands 顯示某個命令的完整路徑

例如:#which touch

輸出:/bin/touch

(2)whereis 選項 檔名-->locates source/binary and manual sections for specified files

選項:-b:search only for binaries 僅查詢二進位制檔案;

-s:search only for sources 僅查詢原始檔;

-m:search only for manual sections 僅查詢manual路徑下的檔案.

例如:

#whereis touch

輸出:touch:/bin/touch /usr/share/man/man1/touch.1.gz /usr/share/man/man1p/touch.1p.gz

(3)locate 選項 關鍵字

-i:ignore case distinctions when matching patterns 查詢時忽略大小寫;

-r: regular pattern 後接正規表示式.

例如:

linux中的查詢命令

file 檔名 顯示的資訊很多,包括檔案的型別,suid許可權,相容平台等 find,對硬碟進行搜尋,慢而且影響硬碟效能 1 與時間有關的引數 共有 atime ctime mtime find mtime 0,意思就是找出根目錄下今天往前數24個小時內被修改的檔案 mtime n n 為數字,意義...

linux中的查詢命令

關於查詢更詳細的內容,參見 shell程式設計和unix命令 find命令的一般形式 find pathname options print exec ok 引數說明 pathname find查詢目錄。來表示當前目錄,用 來表示系統根目錄 option find查詢選項,也就是find根據什麼東西...

Linux的查詢命令

查詢檔案名用find,示例 查詢當前目錄,檔名是 111.txt 的 find 111.txt 查詢根目錄,檔名是 111.txt 的 find name 111.txt 如果需要模糊查詢,使用 號。find命令是自動遞迴子目錄,不需要 r 查詢檔案內容用grep,示例 查詢home目錄的檔案內容 ...