유용한 스크립트로 생각된다.

 

#!/bin/sh
tail -fn0 로그파일명 | \
while read line ; do
        echo "$line" | grep "액션하고자하는문자열"
        if [ $? = 0 ]
        then
                액션스크립트혹은명령어
        fi
done

이후 실행은 nohup ./action.sh &

Posted by neo-orcl
,