Created
March 18, 2025 12:57
-
-
Save CodeMan99/ff38d282eb6d7c7a4cb2f6644df8be2b to your computer and use it in GitHub Desktop.
Bash implementation of `watch`
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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