![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Identifying and grouping OS processes and APP processes | wilsonee | SUN Solaris | 2 | 1 Week Ago 06:26 AM |
| Monitoring Processes - Killing hung processes | ukndoit | UNIX for Advanced & Expert Users | 4 | 01-17-2008 12:30 AM |
| Processes | Krrishv | Shell Programming and Scripting | 17 | 01-25-2007 05:07 AM |
| Processes | Beetlejuice | UNIX for Dummies Questions & Answers | 4 | 04-06-2005 09:33 AM |
| processes | master_6ez | Shell Programming and Scripting | 3 | 11-24-2004 05:48 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
processes
What command string will locate ONLY the PID of a process and ouput only the number of PID of the process?
|
| Forum Sponsor | ||
|
|
|
||||
|
Found this
ps -ef | sed -n '/aim.*\.sh/{/grep/!p;}' | awk '{print$2}' | xargs -i kill {} from this post - realize it is killing the process - just remove the last pipe and xargs -i kill {} if you don't need to kill it. This is looking for a processes with aim.* in it. |
||||
| Google The UNIX and Linux Forums |