linux-常用命令备注

//杀掉某个进程-xargs应用

ps aux | grep "udplog.js" | cut -c 9-15 | xargs kill -9

//远程拷贝文件或文件夹

sudo scp -P 22 /Volumes/info/test/* root@172.12.1.12:/data/shell/

//监听80端口数据包

 tcpdump 'tcp port 80 and (((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0)'

 

 

// 安全认证 GeoTrust SSL或者startssl(个人免费版本)

原文地址:https://www.cnblogs.com/dasn/p/4046625.html