노출되는 이미지가 불편하시겠지만 양해를 구합니다. 노출, 클릭등에 관한 자료로 활용 중입니다.


Bash , Kill $pids




- 프로세스 찾기

- 문자열 null 비교

- Kill 명령어 실행


#!/bin/bash

lsof -i | grep 8117
pids=`lsof -i | grep 8117 | grep -v grep | awk '{print $2}'`
echo $pids
if [ ! -z "$pids" ] 
then
	kill -9 $pids
else
	echo "Not Found!"
fi


블로그 이미지

StartGuide

I want to share the basic to programming of each category and how to solve the error. This basic instruction can be extended further. And I have been worked in southeast Asia more than 3 years. And I want to have the chance to work another country.

,