常用檔案搜尋命令3

2022-06-15 05:45:12 字數 629 閱讀 3989

幫助命令:man

例子:man -l

用法類似於more less 翻頁,換行,/+關鍵字查詢

可以查詢配置檔案,不要加絕對路徑

例子:man passwd

whereis 可以檢視命令,也可以檢視配置檔案的位置

[root@localhost ~]# whereis passwd

passwd: /usr/bin/passwd /etc/passwd /usr/share/man/man1/passwd.1.gz

ls --help 可以檢視ls命令的選項

whatis:可以列出命令的簡短資訊

[root@localhost ~]# whatis ls

ls (1) - list directory contents

[root@localhost ~]# whatis find

find (1) - search for files in a directory hierarchy

[root@localhost ~]#

help 命令,查詢內建命令(沒有目錄的命令)

help umask

help cd

help if

檔案搜尋命令

1,檔案搜尋命令locate 速度快 locate 檔名 在後台資料庫 mlocate 中按檔名搜尋,搜尋速度更快 var lib mlocate locate命令所搜尋的資料庫 預設一天更新一次 updatedb 更新資料庫 etc updatedb.conf配置檔案 locate搜尋命令遵守此配...

檔案搜尋命令

檔案搜尋命令find 1.find 命令名稱 find 命令所在路徑 bin find 執行許可權 所有使用者 語法 find 搜尋範圍 匹配條件 功能描述 檔案搜尋 檔案搜尋命令 1.find etc name init 表示任意字元,單個字元 在目錄 etc中查詢檔案init iname不區分大...

linux檔案搜尋命令和命令搜尋命令

1.locate 速度快 find 搜尋全部檔案 1 locate 檔名 在後台資料庫中按檔名搜尋 2 資料庫所在位置 var lib mlocate 可以切換到該目錄下看看 3 用命令updatedb更新後台資料庫 4 配置檔案在 etc updatedb.config 開啟檔案搜尋位置限制時可以...