Linux常用命令watch可以帮你监测一个命令的运行结果,来监测你想要的一切命令的结果变化,下面良许教程网为大家分享一下Linux常用命令watch命令具体使用方法。
常见命令参数
Usage: watch [-dhntv] [--differences[=cumulative]] [--help] [--interval=] [--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 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+c 或Ctrl+z 可以退出正在执行的watch监控进程
#每隔一秒高亮显示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"
watch可以同时运行多个命令,命令间用分号分隔。
以下命令监控磁盘的使用状况,以及当前目录下文件的变化状况,包括文件的新增、删除和文件修改日期的更新等。
watch -d -n 1 'df -h; ls -l'
此关于Linux常用命令watch命令的使用方法分享结束,大家如果对watch命令的使用方法还有问题可以通过评论区将问题提交我们。
以上就是良许教程网为各位朋友分享的Linux系统相关内容。想要了解更多Linux相关知识记得关注公众号“良许Linux”,或扫描下方二维码进行关注,更多干货等着你 !