1.watch简介
watch 是一个非常实用的命令,基本所有的 Linux 发行版都带有这个小工具,如同名字一样,watch 可以帮你监测一个命令的运行结果,省得你一遍遍的手动运行。
2.watch参数
-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 //关闭header
3.watch实例
每1秒查看网络端口监听状态
watch -n 1 netstat -nn -tl
每一秒查看当前文件夹信息
watch -n ls