"리눅스 프로세스 목록 보기"의 두 판 사이의 차이

7번째 줄: 7번째 줄:
</source>
</source>


==구분==
==방법 2: 구분==
;명령어
;명령어
<source lang='bash'>
<source lang='bash'>

2012년 8월 27일 (월) 10:23 판

리눅스 프로세스 목록

1 방법 1

명령어
ps -eo comm | egrep -v "^(COMMAND|ps|egrep|sort)$" | sort

2 방법 2: 구분

명령어
ps -eo command | grep ]$ | sort
ps -eo comm,command | egrep -v "^(COMMAND|ps|egrep|sort) " | egrep -v ]$ | sort | cut -f1 -d" "

3 같이 보기

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