Skip to content

Instantly share code, notes, and snippets.

@CodeMan99
Created March 18, 2025 12:57
Show Gist options
  • Save CodeMan99/ff38d282eb6d7c7a4cb2f6644df8be2b to your computer and use it in GitHub Desktop.
Save CodeMan99/ff38d282eb6d7c7a4cb2f6644df8be2b to your computer and use it in GitHub Desktop.
Bash implementation of `watch`
#!/usr/bin/env bash
#
# Usage: watch.sh "<command>" [interval]
# https://stackoverflow.com/questions/9574089/os-x-bash-watch-command
pid=$$
command="$1"
# default interval of 2 seconds
interval="${2:-2}"
reserved_line_count=3
lines=$(($(tput lines) - $reserved_line_count))
header_mode='clear
setaf 0
setab 7
'
buffer="$(mktemp watch-sh-XXXXXX)"
function onexit() {
tput rmcup
rm -f "$buffer"
}
trap onexit EXIT
tput smcup
KEY=" "
while [[ "$KEY" != "q" ]]; do {
printf "%s\t%s (PID=%s)%s\n\n" "$(tput -S <<< "$header_mode")" "$(date)" "$pid" "$(tput sgr0)"
bash -c "$command" | tee "$buffer" | head -n $lines
read -s -t $interval -n 1 KEY
} done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment