watch
execute a program periodically, showing output fullscreen
- Provided by: procps (Version: 1:3.3.9-1ubuntu2.3)
- Report a bug
execute a program periodically, showing output fullscreen
watch [options] command
watch runs command repeatedly, displaying its output and errors (the first screenfull). This allows you to watch the program output change over time. By default, the program is run every 2 seconds. By default, watch will run until interrupted.
Note that POSIX option processing is used (i.e., option processing stops at the first non-option argument). This means that flags after command don't get interpreted by watch itself.
To watch for mail, you might do
To watch the contents of a directory change, you could use
If you're only interested in files owned by user joe, you might use
To see the effects of quoting, try these out
To see the effect of precision time keeping, try adding -p to
You can watch for your administrator to install the latest kernel with
(Note that -p isn't guaranteed to work across reboots, especially in the face of ntpdate or other bootup time-changing mechanisms)
Upon terminal resize, the screen will not be correctly repainted until the next scheduled update. All --differences highlighting is lost on that update as well.
Non-printing characters are stripped from program output. Use "cat -v" as part of the command pipeline if you want to see them.
Combining Characters that are supposed to display on the character at the last column on the screen may display one column early, or they may not display at all.
Combining Characters never count as different in --differences mode. Only the base character counts.
Blank lines directly after a line which ends in the last column do not display.
--precise mode doesn't yet have advanced temporal distortion technology to compensate for a command that takes more than interval seconds to execute. watch also can get into a state where it rapid-fires as many executions of command as it can to catch up from a previous executions running longer than interval (for example, netstat taking ages on a DNS lookup).
The original watch was written by Tony Rems in 1991, with mods and corrections by Francois Pinard. It was reworked and new features added by Mike Coleman in 1999. The beep, exec, and error handling features were added by Morty Abzug in 2008. On a not so dark and stormy morning in March of 2003, Anthony DeRobertis got sick of his watches that should update every minute eventually updating many seconds after the minute started, and added microsecond precision. Unicode support was added in 2009 by Jarrod Lowe