![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Advanced & Expert Users Advanced UNIX and Linux questions go here. Expert-to-Expert. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| reformat date, awk and sed | mondrar | Shell Programming and Scripting | 5 | 06-05-2008 12:08 PM |
| help reformat data with awk | climbak | Shell Programming and Scripting | 4 | 05-30-2008 11:17 AM |
| Date Reformat | F-1 | UNIX for Dummies Questions & Answers | 2 | 04-25-2006 12:32 PM |
| reformat the file | CamTu | Shell Programming and Scripting | 3 | 03-09-2005 02:01 PM |
| reformat the output from "diff" command | CamTu | Shell Programming and Scripting | 5 | 03-01-2005 07:54 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
reformat ps output
I often use "ps -ef" command to list all running processes. Now i want to customize the output to show only 2 parts: CMD and UID as below:
/bin/bash /usr/bin/run-parts /etc/cron.weekly root /usr/sbin/httpd apache /usr/sbin/httpd apache /usr/sbin/httpd apache I use Code:
ps -ef | awk '{print $8" "$1}'
Anyone know a better way in bash shell? Thanks Last edited by fongthai; 09-23-2008 at 12:53 AM. Reason: correct spelling |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
what are UNIX OS X Developer tools that are required to run Tomcat as daemon process.
Hi All,
can any one brief me about what are the UNIX OS X Developer tools that are required to run Tomcat as daemon process. Problem : while Compiling JSVC it needs OS X Developer tools to be installed. Reference :Installing Apache Tomcat 6 on Mac OS X 10.5 Leopard can i use Mac Os x developer tools for unix os x developer tool ? |
|
#3
|
|||
|
|||
|
Code:
ps -eo command uid |
|
#4
|
|||
|
|||
|
hmm, -o is great, I can change to
Code:
ps -eo command,user Code:
ps -eo command:200,user Last edited by fongthai; 09-23-2008 at 02:25 AM. Reason: add code |
|||
| Google The UNIX and Linux Forums |
| Tags |
| awk reformat parse, format, ps -ef |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|