watch is a CLI tool to re-run a command at a time interval. Very useful for consistently running a command which will update with information, e.g. git status or kubectl get pods.

Show the date and time, updated every 5 seconds:

watch -n 5 echo "$(date)"

See also: