在linux
當中查詢檔案使用命令:
find path -name ****x*
// path 代表搜尋的路徑
//-name 表示按名稱來搜尋
//** 使用統配符來概括檔名
***x
為檔名
例如:find ./ -name *test*;
表示在當前目錄下找到包含test
的檔案。
在linux
中查詢 程序 ; 埠 ;
ps -ef | grep tomcat 程序
ps -ef | grep tomcat 埠
netstat -a 監聽與未監聽的位址+埠
殺死程序
當在某種需要根據程序名刪除程序時使用**如下:
kill -9 $(ps -ef|grep
刪除包含程序名
|gawk '$0 !~/grep/ ' |tr -s '\n' ' ')
替換藍字即可。
Linux查詢檔案
which locate whereis find which命令 用途 查詢可執行檔案並顯示所在的位置,適用於系統命令,shell命令無法查詢 which lsb release 檢視命令的絕對路徑,即這個可執行檔案的位置 usr bin lsb release which cd 查詢不到路徑,c...
Linux 查詢檔案
whereis 程式名稱 查詢軟體的安裝路徑 b 只查詢二進位制檔案 m 只查詢幫助檔案 s 只查詢源 u 排除指定型別檔案 f 只顯示檔名 b 目錄 在指定目錄下查詢二進位制檔案 m 目錄 在指定目錄下查詢幫助檔案 s 目錄 在指定目錄下查詢源 locate 檔名稱 在檔案索引資料庫中搜尋檔案 d...
linux查詢檔案
linux 如何顯示乙個檔案的某幾行 中間幾行 一 從第3000行開始,顯示1000行。即顯示3000 3999行 cat filename tail n 3000 head n 1000 二 顯示1000行到3000行 cat filename head n 3000 tail n 1000 注意...