"리눅스 pgrep"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
6번째 줄: 6번째 줄:


==실습 1==
==실습 1==
<source lang='console'>
<syntaxhighlight lang='console'>
ubuntu@zetawiki:~$ pgrep ssh
ubuntu@zetawiki:~$ pgrep ssh
1179
1179
3949
3949
4009
4009
</source>
</syntaxhighlight>
<source lang='console'>
<syntaxhighlight lang='console'>
ubuntu@zetawiki:~$ pgrep ssh -a
ubuntu@zetawiki:~$ pgrep ssh -a
1179 /usr/sbin/sshd -D
1179 /usr/sbin/sshd -D
3949 sshd: ubuntu [priv]  
3949 sshd: ubuntu [priv]  
4009 sshd: ubuntu@pts/0   
4009 sshd: ubuntu@pts/0   
</source>
</syntaxhighlight>


==실습 2==
==실습 2==
<source lang='console'>
<syntaxhighlight lang='console'>
root@zetawiki:~# sleep 100 &
root@zetawiki:~# sleep 100 &
[1] 5745
[1] 5745
</source>
</syntaxhighlight>
<source lang='console'>
<syntaxhighlight lang='console'>
root@zetawiki:~# sleep 200 &
root@zetawiki:~# sleep 200 &
[2] 5763
[2] 5763
</source>
</syntaxhighlight>
<source lang='console'>
<syntaxhighlight lang='console'>
root@zetawiki:~# sleep 300 &
root@zetawiki:~# sleep 300 &
[3] 5764
[3] 5764
</source>
</syntaxhighlight>
<source lang='console'>
<syntaxhighlight lang='console'>
root@zetawiki:~# pgrep sleep
root@zetawiki:~# pgrep sleep
5745
5745
5763
5763
5764
5764
</source>
</syntaxhighlight>
<source lang='console'>
<syntaxhighlight lang='console'>
root@zetawiki:~# pgrep sleep -a
root@zetawiki:~# pgrep sleep -a
5745 sleep 100
5745 sleep 100
5763 sleep 200
5763 sleep 200
5764 sleep 300
5764 sleep 300
</source>
</syntaxhighlight>
<source lang='console'>
<syntaxhighlight lang='console'>
root@zetawiki:~# pkill sleep
root@zetawiki:~# pkill sleep
[1]  Terminated              sleep 100
[1]  Terminated              sleep 100
[2]-  Terminated              sleep 200
[2]-  Terminated              sleep 200
[3]+  Terminated              sleep 300
[3]+  Terminated              sleep 300
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==

2021년 7월 18일 (일) 06:16 판

1 개요

리눅스 pgrep
/usr/bin/pgrep
  • "process grep"
  • 조건에 맞는 프로세스를 찾아 보여주는 리눅스 명령어

2 실습 1

ubuntu@zetawiki:~$ pgrep ssh
1179
3949
4009
ubuntu@zetawiki:~$ pgrep ssh -a
1179 /usr/sbin/sshd -D
3949 sshd: ubuntu [priv] 
4009 sshd: ubuntu@pts/0

3 실습 2

root@zetawiki:~# sleep 100 &
[1] 5745
root@zetawiki:~# sleep 200 &
[2] 5763
root@zetawiki:~# sleep 300 &
[3] 5764
root@zetawiki:~# pgrep sleep
5745
5763
5764
root@zetawiki:~# pgrep sleep -a
5745 sleep 100
5763 sleep 200
5764 sleep 300
root@zetawiki:~# pkill sleep
[1]   Terminated              sleep 100
[2]-  Terminated              sleep 200
[3]+  Terminated              sleep 300

4 같이 보기

5 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}