반응형

안드로이드의 경우에는 Busybox 에 watch 바이너리가 포함되어 있습니다.

iOS의 경우에는 바이너리 파일은 못 찾았고, 대신에 shell script 파일이 있더군요.

 

출처: http://daniel.lubarov.com/simple-watch-script-for-osx

#!/usr/bin/bash
# Usage: watch [command] [duration]
# Ex) ./watch 'ps -ef | grep -i spring' 0.01
while :; do
    clear
    date
    bash -c "$1"
    sleep ${2:-1}
done

 

반응형

+ Recent posts