linux watch命令

thamsyangsw發表於2014-11-26

linux的watch命令非常有用,它可以定期的執行命令,並且滿屏顯示執行結果,全屏以外的內容可能就看不到了。

Usage: watch [-dhntv] [--differences[=cumulative]] [--help] [--interval=] [--no-title] [--version]
  -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(是否顯示該命令的標題部分)

例子:

[root@m160-90 ~]# watch -d -n 10 ls -l
Every 10.0s: ls -l                  Wed Nov 26 12:33:46 2014(標題部分,如果-t的話就不顯示該部分內容

total 80
-rw------- 1 root root  1833 Jul 28 18:21 anaconda-ks.cfg
drwxr-xr-x 2 root root  4096 Aug  5 13:42 Desktop
-rw-r--r-- 1 root root 45207 Jul 28 18:21 install.log
-rw-r--r-- 1 root root  5188 Jul 28 18:21 install.log.syslog
drwxr-xr-x 2 root root  4096 Jul 29 11:11 software

在另外一個視窗建立一個檔案
[root@m160-90 ~]# touch yangsw

10秒週期結束,會重新整理結果
Every 10.0s: ls -l                 Wed Nov 26 12:34:46 2014

total 80
-rw------- 1 root root  1833 Jul 28 18:21 anaconda-ks.cfg
drwxr-xr-x 2 root root  4096 Aug  5 13:42 Desktop
-rw-r--r-- 1 root root 45207 Jul 28 18:21 install.log
-rw-r--r-- 1 root root  5188 Jul 28 18:21 install.log.syslog
drwxr-xr-x 2 root root  4096 Jul 29 11:11 software
-rw-r--r-- 1 root root     0 Nov 26 12:34 yangsw

 

 

 

      

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26613085/viewspace-1347383/,如需轉載,請註明出處,否則將追究法律責任。

相關文章