1.1 find 查詢檔案或目錄
語法:find [搜尋範圍][匹配條件]
引數說明
[root@localhost ~]# find / -name 123.txt
/ : 從根目錄開始找
-name : 通過名字進行查詢
123.txt :要查詢的檔案名字
1.2 grep 在檔案內搜尋字串匹配的行輸出
語法:grep [引數] 查詢內容 原始檔
引數:
[root@localhost qiancheng]# grep -c 1 123.txt
3----------------------------------------------
[root@localhost qiancheng]# grep -n 1 123.txt
40:12121 12
41:21213132123132
108:1
1.3 which搜尋命令所在目錄以及別名資訊
語法:which 命令
[root@localhost qiancheng]# which rm
alias rm='rm -i'
/usr/bin/rm
查詢rm命名所在目錄
linux檔案查詢命令
linux 檔案查詢命令 1 which 可執行檔名 查詢可執行檔案命令 顯示乙個可執行檔案的完整路徑 按照alias path的順序查詢 例 which lmcbbat 2 whereis 可執行檔名 搜尋乙個可執行工具及其相關配置,幫助 例 whereis lmcbbat 3 slocate l...
linux 檔案查詢命令
linux which命令用於查詢檔案。which指令會在環境變數 path設定的目錄裡查詢符合條件的檔案。語法 which 檔案.引數 linux find命令用來在 指定目錄下查詢 檔案。任何位於引數之前的字串都將被視為欲查詢的目錄名。如果使用該命令時,不設定任何引數,則find命令將在當前目錄...
linux 檔案查詢命令
which是根據使用者設定的path變數內的目錄去查詢可執行檔案,所以不同使用者查詢到的結果可能不一樣。命令用法 file 檢視檔案型別 ascii data binary which a command 尋找執行檔案 whereis bmsu 檔案或目錄名 查linux系統資料庫 locate i...