के आउटपुट में आप फील्ड 5 वीं देख सकते हैं /proc/[pid]/stat
।
$ ps -ejH | grep firefox
3043 2683 2683 ? 00:00:21 firefox
$ < /proc/3043/stat sed -n '$s/.*) [^ ]* [^ ]* \([^ ]*\).*/\1/p'
2683
से man proc
:
/proc/[pid]/stat
Status information about the process. This is used by ps(1). It is defined in /usr/src/linux/fs/proc/array.c.
The fields, in order, with their proper scanf(3) format specifiers, are:
pid %d The process ID.
comm %s The filename of the executable, in parentheses. This is visible whether or not the executable is swapped out.
state %c One character from the string "RSDZTW" where R is running, S is sleeping in an interruptible wait, D is waiting in
uninterruptible disk sleep, Z is zombie, T is traced or stopped (on a signal), and W is paging.
ppid %d The PID of the parent.
pgrp %d The process group ID of the process.
session %d The session ID of the process.
ध्यान दें कि आप उपयोग नहीं कर सकते हैं:
awk '{print $5}'
क्योंकि वह फ़ाइल एक रिक्त पृथक सूची नहीं है। दूसरा क्षेत्र (प्रक्रिया का नाम रिक्त या न्यूलाइन वर्ण भी हो सकता है)। उदाहरण के लिए, ज्यादातर थ्रेड में firefox
आमतौर पर उनके नाम के अक्षर होते हैं।
तो आपको )
वहां एक चरित्र की अंतिम घटना के बाद तीसरे क्षेत्र को प्रिंट करने की आवश्यकता है ।
awk '{print $5}'
आपको सही उत्तर देने की गारंटी नहीं है क्योंकि प्रक्रिया नाम (दूसरा फ़ील्ड) में स्थान या न्यूलाइन वर्ण हो सकते हैं।