'watch'에 해당되는 글 2건
- 2015.06.03 watch.bat
- 2009.12.12 [Unix] watch
https://gist.github.com/jujhars13/4153770
@echo off
if %1==-n (
set interval=%2
shift
shift
) else (
set interval=2
)
title Watch %1 %2 %3 %4 %5 %6 %7 %8 %9
:loop
cls
%1 %2 %3 %4 %5 %6 %7 %8 %9
timeout /t %interval%
goto loop
> watch.bat netstat -na ^| findstr LIST
> watch.bat -n 5 netstat -na ^| find /c "LIST" //이런 식의 변화를 보는데 적합한 듯
변화되는 상황을 보기에는 Unix watch의 -d 옵션이 필요하다.
watch1.bat 참고
- [Unix] watch
- 日常茶飯事
- 2009. 12. 12. 17:11
# watch 'ps -ef | grep syslog'
# watch -n1 -d 'ps -ef | grep syslog' //갱신 간격을 1초로 한다.
# watch -n1 -d 'ps -ef | grep syslog' //갱신 간격을 1초로 한다.
백그라운드 프로세스(job)을 모니터링하거나
동일한 명령어를 반복적으로 사용하는 경우 편리함.
-
# watch -n1 -d 'netstat -a | grep ESTAB'
Recent comment