예를 들어서 svn 이라는 프로세스를 죽이고자 할 때 다음과 같이 합니다. #:]ps -ef | grep svnserve tmax 14286916 1 0 12:17:49 - 0:00 svnserve -d -r /Repository/SvnRepo tmax 5570908 19988634 0 14:53:19 pts/4 0:00 grep svnserve #:] 여기서 svnserve 라는 프로세서를 찾아서 죽이고 싶은데 grep 자기자신도 같이 나오므로 하나로 줄여줘야 한다. 그래서 하나 더 grep 합니다. #:]ps -ef | grep svnserve | grep SvnRepo tmax 14286916 1 0 12:17:49 - 0:00 svnserve -d -r /app/QIS/Repository/SvnR..