90

I'm looking for a Windows program/script/command line function that works like Linux's watch program.

watch periodically calls another program/whatever and shows the result, which is great for refreshing an output file or similar every second:

watch cat my-output.txt

or, more powerfully:

watch grep "fail" my-output.txt

I've looked for it in cygwin's library, but it doesn't seem to be present.

Pops
  • 8,393
  • 29
  • 76
  • 95
PeterJCLaw
  • 2,584
  • 4
  • 20
  • 16

16 Answers16

62

Write your own. Let's say file watch.bat contains :

@ECHO OFF
:loop
  cls
  %*
  timeout /t 5 > NUL
goto loop

and call it via, for example:

watch echo test

will echo test every 5 seconds.

harrymc
  • 455,459
  • 31
  • 526
  • 924
49

Powershell has the while command. You can use it like in Linux:

while (1) {your_command; sleep 5}

Linux version:

while true; do your_command; sleep5; done

Others:

while ($true) {netstat -an | findstr 23560; sleep 5; date}
phuclv
  • 26,555
  • 15
  • 113
  • 235
Mikis
  • 599
  • 4
  • 3
21

watch is available in Cygwin, in the procps-ng⁰ package as listed here (this info can be found via the package search on the website, here). I don't think this package is installed by the default cygwin setup, but it is one I usually select on new installs in order to have the watch command available.

The location of tools in packages typically match package names in Linux distributions (the package containing watch is procps on Debian and Ubuntu too) so if the Cygwin package search function fails you, info for/from Linux distributions may offer clues. In this example the exact naming is no longer the case, though searching for procps would find procps-ng.

--

[0] procps is now deprecated (as noted here and here), the original package stopped being maintained and a couple of distros forked it to apply pending patches. In some places it is still called procps but in others like cygwin the new name was used

David Spillett
  • 23,420
  • 1
  • 49
  • 69
19

A generic Windows command oneliner to accomplish this:

for /l %g in () do @( echo test & timeout /t 2 )

Replace "echo test" with the command you wish to run repeatedly.

w1mb0r
  • 191
  • 1
  • 3
9

It's a PowerShell one liner:

while ($true) { <your command here> | Out-Host; Sleep 5; Clear }
ErikW
  • 191
  • 1
  • 3
8

This is how I would do it in PowerShell:

while(1){ netstat -an|grep 1920;start-sleep -seconds 2;clear }

The condition while(1) is equivalent to while true, looping indefinitely.

Ben N
  • 40,045
  • 17
  • 140
  • 181
klaypigeon
  • 81
  • 1
  • 3
8

I wrote this little PowerShell module to do what you were looking for. Just put it in

C:\Users\[username]\Documents\WindowsPowerShell\Modules\Watch

and run import-module watch in PowerShell.


# ---- BEGIN SCRIPT
# Author:       John Rizzo
# Created:      06/12/2014
# Last Updated: 06/12/2014
# Website:      http://www.johnrizzo.net

function Watch {
    [CmdletBinding(SupportsShouldProcess=$True,ConfirmImpact='High')]
    param (
        [Parameter(Mandatory=$False,
                   ValueFromPipeline=$True,
                   ValueFromPipelineByPropertyName=$True)]
        [int]$interval = 10,

        [Parameter(Mandatory=$True,
                   ValueFromPipeline=$True,
                   ValueFromPipelineByPropertyName=$True)]
        [string]$command
    )
    process {
        $cmd = [scriptblock]::Create($command);
        While($True) {
            cls;
            Write-Host "Command: " $command;
            $cmd.Invoke();
            sleep $interval;
        }
    }
}

Export-ModuleMember -function Watch

# --- END SCRIPT
Excellll
  • 12,627
  • 11
  • 51
  • 78
johnrizzo1
  • 81
  • 1
  • 1
  • 1
    Looks pretty good but I would encourage the function to be in the Verb-Noun format (e.g. ```Watch-Command```) with an alias of ```Watch``` (```Set-Alias -Name Watch -item Watch-Command```). – duct_tape_coder Mar 08 '19 at 18:24
  • Thanks! See [my answer](https://superuser.com/a/1598420/1235719) for some improvements I added – Wesley Oct 30 '20 at 08:08
3

You can also make up a delay using the PING command, for example:

@echo off
:loop
  cls
  dir c:\temp
  REM 5000mS (5 sec) delay...
  ping 1.1.1.1 -n 1 -w 5000 >NUL
goto loop
Linker3000
  • 27,498
  • 3
  • 52
  • 73
2

I created a watch command for windows called llwatch.

The code is both on my website landenlabs.com

and also on GitHub

You may need to use x64 to watch x64 programs and x32 for the others. Not sure how picky windows is.

LanDenLabs
  • 131
  • 2
2

I had the same issue when needing to check the file size of a file actively being worked on by another process. I ended up cloning the functionality of watch on Windows. The compiled exe as well as the source is available at the site.

watch for Windows

garrettg84
  • 21
  • 1
1

what @harrymc said except with sleep watch.bat

@ECHO OFF
:loop
  %*
  sleep 5
goto loop

./watch.bat npm run test

npm run test every 5 sec

user2167582
  • 255
  • 3
  • 11
1

You can use this command in windows cmd (not working in powershell):

for /l %g in () do @( <your-command> & timeout /t 1 > nul )

The /t value is in seconds

This prevent the timeout command to write "Waiting for n seconds ..." so it's kind of silent.

If you want to go faster than 1 second you can do the following:

for /l %g in () do @( <your-command> & ping 127.0.0.1 -n 1 -w 500 > nul )
0

PowerShell-Watch

Code Repository

evandrix
  • 123
  • 1
  • 4
0

Some improvements on the excellent PS module written by johnrizzo1 (see here)

  • Renamed function to be in line with Powershell naming convention (as suggested by duct_tape_coder)
  • Moved interval to second argument, so it's optional; reduced default to 2 seconds
  • Fetch output of Invoke first, only then refresh the screen. This avoids the screen going blank while the command executes
function Watch-Command {
    [CmdletBinding(SupportsShouldProcess=$True,ConfirmImpact='High')]
    param (
        [Parameter(Mandatory=$True,
                   ValueFromPipeline=$True,
                   ValueFromPipelineByPropertyName=$True)]
        [string]$command,

        [Parameter(Mandatory=$False,
                   ValueFromPipeline=$True,
                   ValueFromPipelineByPropertyName=$True)]
        [int]$interval = 2
    )
    process {
        $cmd = [scriptblock]::Create($command);
        While($True) {
            $output = $cmd.Invoke();
            cls;
            Write-Host "Command: " $command;
            Write-Host ($output | Out-String);
            sleep $interval;
        }
    }
}
Wesley
  • 101
  • 1
0
while(1) { clear; Command ;sleep 3; }
Donald Duck
  • 2,473
  • 10
  • 29
  • 45
  • 1
    While this code may answer the question, providing additional context regarding why and/or how this code answers the question improves its long-term value. – Donald Duck Dec 18 '20 at 09:33
-2

I was in a hurry.... I used one suggestion and changed it a little to work for me:

for /l %g in () do @( echo test & timeout /t 2 )

I changed it to:

for /l %g in () do @( test.bat & timeout /t 2 )

And I created the test.bat file with the command line. In my case, it was:

net group <NAME> /domain

I found that the echo command just printed out to the screen but did not execute the command

roaima
  • 2,889
  • 1
  • 13
  • 27
  • "_the echo command just printed out to the screen_" - that's exactly what the `echo` command does – roaima Jan 09 '23 at 18:37