유용한 스크립트로 생각된다.
#!/bin/sh
tail -fn0 로그파일명 | \
while read line ; do
echo "$line" | grep "액션하고자하는문자열"
if [ $? = 0 ]
then
액션스크립트혹은명령어
fi
done
이후 실행은 nohup ./action.sh &
'Knowledge > OS' 카테고리의 다른 글
find vs locate and updatedb (0) | 2016.01.09 |
---|---|
change putty simple directory color (0) | 2015.08.10 |
snmp 기본설정 (0) | 2015.06.24 |
centos 부팅 과정중 sendmail 서비스 시작 늦게 되는 현상 (0) | 2015.01.19 |
ssh 접속이 id 입력 후 느린 경우 해결(centos) (0) | 2015.01.16 |