Use of Linux watch command

Use of Linux watch command

1. Command Introduction

The watch command executes the given command in a periodic manner and displays the execution results on the full screen.

watch is a very useful command that comes with almost all Linux distributions. As the name suggests, watch can help monitor the running results of a command, saving us from running it manually over and over again. For example, tail a log file, ls monitors the size change of a file, etc. By default, the program runs every 2 seconds. You can use -n or --interval to specify the interval.

2. Command format

watch [OPTIONS] COMMAND

3. Option Description

-d, --differences [PERMANENT]
 Highlights the differences between the two most recent updates. -d cumulative option will highlight the changes (regardless of whether the most recent one has changed) -n, --interval SECONDS
 Specify the monitoring interval in seconds. The default value is 2s and cannot be lower than 0.1s
-p, --precise
 Try to monitor the command exactly at the specified interval -t, --no-title
 Turn off the output of the watch command at the top of the interval, command, and current time -b, --beep
 Beep when the exit code of the monitored command is non-zero -e, --errexit
 When an error occurs in the monitored command, watch stops updating and exits after pressing the key -g, --chgexit
 Exit watch when the monitored command output changes
-c, --color
 Interpret ANSI color and style sequences -x, --exec
 Pass the command to exec(2) instead of sh -c
-h, --help
 Display help information and exit -v, --version
 Display version information and exit

4. Common Examples

(1) Repeat the uptime command, by default it is executed every 2 seconds.

watch uptime

(2) Check the changes in the current directory file log.

watch -d "ls -l | grep log"

Note that when the monitored command contains a pipe, it needs to be enclosed in quotes.

(3) Check the average load of the system every 10 seconds.

watch -n10 cat /proc/loadavg

(4) Highlight the changes in the number of network connections every 1 second.

watch -n1 -d netstat -ant

References
[1] watch(1) manual

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Logwatch Command in Linux
  • Introduction to Linux software watchdog watchdog
  • Simple and efficient: Linux log analysis with Swatch

<<:  MySQL index usage monitoring skills (worth collecting!)

>>:  How to implement the Vue mouse wheel scrolling switching routing effect

Blog    

Recommend

CentOS uses expect to remotely execute scripts and commands in batches

Sometimes we may need to operate servers in batch...

Automatic file synchronization between two Linux servers

When server B (172.17.166.11) is powered on or re...

How to set up jar application startup on CentOS7

Pitfalls encountered during project deployment Wh...

In-depth understanding of the use of the infer keyword in typescript

Table of contents infer Case: Deepen your underst...

Getting Started Tutorial on GDB in Linux

Preface gdb is a very useful debugging tool under...

A time-consuming troubleshooting process record of a docker error

Table of contents origin Environmental Informatio...

MYSQL custom function to determine whether it is a positive integer example code

You can write a function: Mainly use regular expr...

A Deeper Look at SQL Injection

1. What is SQL injection? Sql injection is an att...

The grid is your layout plan for the page

<br /> English original: http://desktoppub.a...

Difference between MySQL btree index and hash index

In MySQL, most indexes (such as PRIMARY KEY, UNIQ...

Detailed explanation of the method of comparing dates in MySQL

If there is a table product with a field add_time...

Four ways to combine CSS and HTML

(1) Each HTML tag has an attribute style, which c...

Detailed explanation of the usage of Object.assign() in ES6

Table of contents 2. Purpose 2.1 Adding propertie...

Simply understand the writing and execution order of MySQL statements

There is a big difference between the writing ord...