kojiro 1274274695 learn watch is a nonstandard util. Here's a function with similar utility: watch() { local -i t="$1"; shift; while true; do "$@"; sleep "$t"; clear; done; } kojiro 1274274818 forget kojiro 1274274865 learn watch is a nonstandard util for displaying the output of a command run repeatedly. Here's a function with similar utility: watch() { local -i t="$1"; shift; while true; do clear; "$@"; sleep "$t"; done; } zendeavor 1379832991 forget zendeavor 1379833055 learn watch() { local t=$1; shift; while sleep $t; do clear; "$@"; done; } _adb 1496515554 forget _adb 1496515554 learn watch() { local t=$1; shift; while sleep "$t"; do clear; "$@"; done; }