摘要:
############# # 获取某个端口上客户端的一共连接数 netstat -nat|grep -i ":6060"|wc -l # 获取某个客户端ip连接到该端口的连接数 netstat -nat|grep -i ":6060"|grep 10.10.10.10 |wc -l # http协 阅读全文
摘要:
select unix_timestamp('2019-12-05 12:26:35'); select from_unixtime(1515980716); 阅读全文
摘要:
sed -n '/^import\ logging/,/GgfkvfvfI4/p' a.txt# 匹配中,如果有空格,则需要转义空格,像逗号则不需要转义head -n 100 filenametail -n 100 filename 1、截取时间段 截取 2019-06-25 10:10 到 201 阅读全文