zoukankan      html  css  js  c++  java
  • Linux watch命令详解

    watch可以帮你监测一个命令的运行结果,来监测你想要的一切命令的结果变化

    常见命令参数

    Usage: watch [-dhntv] [--differences[=cumulative]] [--help] [--interval=<n>] [--no-title] [--version] <command>
      -d, --differences[=cumulative]        highlight changes between updates
                    (cumulative means highlighting is cumulative)
      -h, --help                            print a summary of the options
      -n, --interval=<seconds>              seconds to wait between updates
      -v, --version                         print the version number
      -t, --no-title                        turns off showing the header

    常见命令展示

    每隔一秒高亮显示网络链接数的变化情况

    watch -n 1 -d netstat -ant 【-n 设置间隔,-d,difference,高亮显示不同】
    
       watch -d 'ls /home/omd'       【-d 高亮显示】
    
       watch -t 'ls /home/omd'       【-t会关闭watch命令在顶部的时间间隔】
    
    说明: 切换终端: Ctrl+x     退出watch:Ctrl+g
    
    

    每隔一秒高亮显示http链接数的变化情况

    watch -n 1 -d 'pstree|grep http'
    
    实时查看模拟攻击客户机建立起来的连接数
    
    watch -n 1 -d 'netstat -an | grep "21" | egrep "192.168.25.100"| wc -l'
    
    监测当前目录中 scf' 的文件的变化
    
    watch -d 'ls -l|grep scf'
    
    10秒一次输出系统的平均负载
    
    watch -n 1 -d "uptime"
    
  • 相关阅读:
    BZOJ 4318: OSU!
    BZOJ 3450: Tyvj1952 Easy
    BZOJ 1426: 收集邮票
    BZOJ 1415: [Noi2005]聪聪和可可
    BZOJ 1778: [Usaco2010 Hol]Dotp 驱逐猪猡
    BZOJ 3270: 博物馆
    BZOJ 3143: [Hnoi2013]游走
    BZOJ 3166: [Heoi2013]Alo
    BZOJ 3261: 最大异或和
    BZOJ 1022: [SHOI2008]小约翰的游戏John
  • 原文地址:https://www.cnblogs.com/ftl1012/p/watch.html
Copyright © 2011-2022 走看看