[root@xsx ~]# netstat -an|grep -i syn_recv|awk '{print $5}'|awk -F\: '{print $1}'|sort|uniq -c
      1 149.56.41.159

 

grep -i (不区分大小写)

[root@bass Desktop]# grep -i "test" test.txt 
this is test
THIS IS TEST 1
this is TEST 2
this is test3
[root@bass Desktop]# grep  "test" test.txt 
this is test
this is test3

 

相关文章:

  • 2021-12-05
  • 2021-06-19
  • 2021-12-12
  • 2021-11-17
  • 2021-06-08
  • 2021-11-17
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-02-22
  • 2021-12-28
  • 2021-12-25
  • 2021-12-04
  • 2021-06-29
  • 2022-02-07
相关资源
相似解决方案