linux特殊命令使用方法

tail -5f   a.log     //实时查看a.log这个文件的内容

sudo firewall-cmd --permanent --direct --add-rule ipv4 filter OUTPUT 0 -p tcp --dport 5353 -d 118.118.118.118 -j DRO   //添加防火墙策略

 

 

系统性能监控

lsof -i -P -n | grep -E "(:443|:80|:514)"     //查看性能、系统使用情况

nohup watch -n 1 ' lsof -i -P -n | grep -E "(:443|:80|:514)"' > a.log &   //没一秒钟执行一次lsof这个命令

ss -tlnp| grep 端口   //查看进程

系统服务

systemctl stop 服务名     //停止这个服务

文字处理

grep   //过滤字符串行

tee   //输出到标准输出,同时跟一个文件,将标准输出保存到此文件

 

posted on 2024-02-22 17:45  叶子在行动  阅读(20)  评论(0编辑  收藏  举报

导航