查到當前目錄下,字串所在的檔案 find -type f -exec grep '6200218' -l {} \;
根據名字查詢當天的日誌:
find -name 'settlement-0*log*' -exec grep '' -l {} \;
#find -mtime +30 -type f | xargs rm -rf
ls -lt | grep 'data*' |head -5
netstat -tupln|grep 8080 檢視埠是否被占用
netstat -apn |grep 8883
檢視埠被哪個程序使用: ps -ef | grep 14091 (程序id)
檢視程序埠 netstat -apn |grep 14091((程序id))
jar -xvf ../guohuai-operate-1.0.0.jar
5.標記導航
當使用 less 檢視大檔案時,可以在任何乙個位置作標記,可以通過命令導航到標有特定標記的文字位置:
ma - 使用 a 標記文字的當前位置
'a - 導航到標記 a 處
常用工具命令 lsof , strace, netstat, iostat, tcpdump
根據列排序 ps -aux | awk '$2>30000 ' | sort -k2 -r
ps -ef |grep phantomjs | awk '$2 '|xargs kill -9
查詢大檔案
df -lh
du -s * | sort -nr |head -5 壓測
top -hp pid
printf
"%x\n"
21742
jstack | grep -a 3d30
抓包 tcpdump -i eth1 -als0 host 111.203.205.28
liunx常用命令
ls 例子 ls alrs 把當前路徑的所有檔案所有資訊以倒序排序展示出來 l 表示所有的鏈結資訊 a 表示所有檔案,包括.開始的 r 以倒序為目的 s 按大小排序2.建立目錄 mkdir 例子 mkdir p m 0111 test1 test 在當前路徑建立test1 test資料夾,目錄許可權...
Liunx常用命令
ls 引數 al 檢視當前目錄下所有的檔案以及資料夾,包括隱藏檔案 ll 檢視當前目錄下所有檔案以及資料夾的詳細資訊,不包括隱藏檔案 pwd 檢視當前的路徑 mkdir 建立資料夾 引數 p 表示建立多級目錄 cd 切換路徑 cat 檢視檔案的所有內容 less 檢視我們的檔案內容 enter 往下...
liunx常用命令
echo abc mytxtfile echo abc 會將echo後的引數輸出到標準輸出 螢幕上 後面的 的作用是重定向,它會將echo 的引數不再輸出到螢幕上,而是指定的檔案中 覆蓋 如果想在檔案後面追加,則使用 檢視文字檔案內容 cat mytxtfile 會在螢幕上輸出整個mytxtfile...