ip

1
2
# 查看出口IP(公网IP)
curl icanhazip.com

gnuplot图形化

1
2
3
4
5
6
7
8
9
# 图形化
echo '1
3
2
4
6' | gnuplot -e "set terminal
dumb;plot '<cat' using 1 with line"

awk '{print $1)' /tmp/nginx.log | sort | uniq-c | sort -nr | head -20 | gnuplot -e "set term dumb; plot '<cat using 1:(column(0):ytic(2) with lines;”

xargs

1
2
# xargs捕获whiledo输出,-I {}参数替换,bash -c “cmd string”执行命令
while read line; do xx=$(xxx);echo $xx ;done |xargs -I {} bash -c (sieep 2;adb shell input tap {})

端口占用查看

windows

1
2
3
4
5
6
7
8
# 查看端口
netstat -ano
# 查看pid
netstat -aon|findstr “18082
# 查看进程,可在任务管理器查看
tasklist|findstr “3320
# 结束进程
taskkill /f /t /im httpd.exe

linux

1
2
3
4
5
6
# 列出所有端口的情况
netstat -ano
# 查找占用的程序
netstat -apn | grep 12286
# 杀掉对应进程
kill -9 26105