하 정말 모르겠네요 ㅠㅠ 어디서부터 공부해야할지

익명 사용자의 이미지

1.쉘프로그래밍 중인데, ps -ef를 하면 PID STIME등이 나오잖아요..
그런데 거기서 저는 ps -ef를 통해서 PID를 기준으로 잡고 내림차순 정렬하고 싶은데 방법을 도저히 모르겠네요.
PID기준으로 UID , PID PPID 등을 출력하고 싶습니다.

2.그리고 이렇게 ps관련 명령어 등 정리된 책이 있을까요? 도저히 어디서 공부를 해야할지도 모르겠네요 ㅠㅠ
책이 있다면 추천해주실수있을까요? 뭔가 명령어가 다 정리되어있는 책이 있나요?

익명 사용자의 이미지

1. 뭘 어떻게 하고 싶다는 건지 명확하고 자세하게 다시 설명해보세요.
사람한테도 설명을 못 하고 있는데 컴퓨터한테 어떻게 시킵니까

2. man page가 있습니다:
http://man7.org/linux/man-pages/man1/ps.1.html

김정균의 이미지

1. ps 에서 다음과 같이 할 수 있습니다.

[user@host ~]$ ps -ef O+P

O-P 는 PID를 내림차순으로 정렬하고, O+P는 오름 차순으로 정렬 합니다. P 대신 C(cpu), U(user) 등을 사용할 수 있습니다. 자세한 것은 man page 참조.
다만.. ps 에서 제공하는 정렬은 단순 chracter 정렬입니다. 즉 1, 2, 12 의 정렬은 1, 12, 2 순으로 나옵니다.

그러므로 sort 명령을 이용하는 것이 더 좋습니다.

[user@host ~]$ ps -ef | sort -n -k 2

sort 의 옵션은, 두번째 필드(-k 2)로 정렬하고, numeric 정렬(-n) 하라는 의미입니다.

2. 유닉스 파워 툴이라는 조금 오래된 책이 있습니다.
http://www.hanbit.co.kr/store/books/look.php?p_code=B4286704503
그래도, linux 에서의 가장 좋은 매뉴얼은 man page 입니다. "man ps"

파이썬3의 이미지

원하는바를 저도 정확히 몰라서 추측으로 끄적여봤씁니다. 파이썬 3.7 입니다.

https://gitlab.com/soyeomul/test/blob/408f2a953fa08d16c7adb8e4c9d8ef08d8eabf1f/161667.py

꾸벅,,,

뭉뭉이의 이미지

$ ps -ef | sort -rn -k2

-r, --reverse reverse the result of comparisons
-n, --numeric-sort compare according to string numerical value
-k, --key=KEYDEF sort via a key; KEYDEF gives location and type

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.