Skip to content

Instantly share code, notes, and snippets.

@aboron
Created July 20, 2022 17:17
Show Gist options
  • Save aboron/1dc740084ac1a36bdadfee95b534e230 to your computer and use it in GitHub Desktop.
Save aboron/1dc740084ac1a36bdadfee95b534e230 to your computer and use it in GitHub Desktop.
Emulated "watch" command for use in limited smartos global zone
#/bin/bash
while [ "$key" != "q" ]
do
clear
uptime
echo "`$* | head -n 35`"
read -n 1 -t 2 -s -r key
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment