반응형
SMALL
확인 방법
$ which watch
/usr/bin/watch
사용법
$ watch --help
Usage:
watch [options] command
Options:
-b | --beep | beep if command has a non-zero exit |
-c | --color | interpret ANSI color and style sequences |
-d | --differences[=<permanent>] | highlight changes between updates |
-e | --errexit | exit if command has a non-zero exit |
-g | --chgexit | exit when output from command changes |
-n | --interval <secs> | seconds to wait between updates |
-p | --precise | attempt run command in precise intervals |
-t | --no-title | turn off header |
-x | --exec | pass command to exec instead of "sh -c" |
-h | --help | display this help and exit |
-v | --version | output version information and exit |
실습
5초 간격으로 해당 위치에 존재하는 파일 확인
$ watch -n 5 'ls -al'
.....
위 명령어를 입력하면 5초 간격으로 ls -al 을 계속 입력하면서 결과를 확인가능합니다.
종료는 [Ctrl + C] 를 입력해주면 됍니다.
$ watch -n 5 -d 'ls -al'
위와 같이 -d 옵션을 추가해주면 변경된 부분이 블록처리되어 보여져서 더 알기 쉽습니다.
반응형
'Back-End > 리눅스' 카테고리의 다른 글
[Linux] grep 명령어 AND, OR, NOT 조건 사용방법 (1) | 2022.08.12 |
---|---|
CentOS에서 로그인 시 bash-4-2$ 가 나올때 조치 방법 (2) | 2021.12.02 |
리눅스 postgresql 접속 방법 및 옵션 (0) | 2020.11.18 |
쉘 스크립트 만들기 (2) | 2018.11.29 |
리눅스 톰캣 버전 확인방법 (0) | 2017.12.08 |