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

常见命令参数

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

常见命令展示
每隔一秒高亮显示网络链接数的变化情况

  1. watch -n 1 -d netstat -ant 【-n 设置间隔,-d,difference,高亮显示不同】
  2. watch -d 'ls /home/omd' 【-d 高亮显示】
  3. watch -t 'ls /home/omd' 【-t会关闭watch命令在顶部的时间间隔】

说明: Ctrl+c 或Ctrl+z 可以退出正在执行的watch监控进程

  1. #每隔一秒高亮显示http链接数的变化情况
  2. watch -n 1 -d 'pstree|grep http'
  3. #实时查看模拟攻击客户机建立起来的连接数
  4. watch -n 1 -d 'netstat -an | grep "21" | egrep "192.168.25.100"| wc -l'
  5. #监测当前目录中 scf' 的文件的变化
  6. watch -d 'ls -l|grep scf'
  7. #10秒一次输出系统的平均负载
  8. watch -n 1 -d "uptime"

watch可以同时运行多个命令,命令间用分号分隔。
以下命令监控磁盘的使用状况,以及当前目录下文件的变化状况,包括文件的新增、删除和文件修改日期的更新等。

  1. watch -d -n 1 'df -h; ls -l'