檔案查詢
find . -name db2jcc.jar
網絡卡抓包
tcpdump -i eth5 -vv -s 0 -w sgm.cap
tcpdump -i any port 80 and host 128.20.8.190 -s 0 -w /home/test.cap -vv
tcpdump -i any port 80 -s 0 -w ui_to_ups.cap -vv
lsof -i:3306|wc -l
列出3306開啟的檔案總數
lsof -i:9191 誰占用了9191埠
檢視所有程序的檔案開啟數
lsof |wc -l
檢視某個程序開啟的檔案數
lsof -p pid |wc -l
統計乙個檔案有多少行
wc -l test.txt
開發中常用linux命令
1.找出所有shell 裡面,找到所有shell find opt task grep v pyspark2 grep sh a.sh 2.找出含有cluster 字串的檔案 過濾其中有submit 和 cluster 字串的shell檔案 import os with open a.sh r as...
sqlmap中常用的幾個命令
1.u 表示需要探測的目標站點url,例如 sqlmap.py u注 如果url後引數個數大於等於2個,則需要加上雙引號 sqlmap.py u username zhangsan 2.r 表示判斷乙個文字中的請求是否存在注入,一般在存在cookie注入時使用,路徑可以是相對路徑也可以是絕對路徑 s...
linux開發中常用命令
使用者管理 防火牆tail n 100 tps.log grep 2020 06 19 檢視2020 06 19的日誌尾部最後100行 tail f tms.log grep tps.timer.job.switch tail f 可以實時檢視檔案的新增內容 cat tms.log grep e f...