![]() |
|
|
|
|
|||||||
| 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 |
| Active windows when pointed. | rimser9 | UNIX Desktop for Dummies Questions & Answers | 1 | 07-14-2008 12:07 PM |
| Active Quota - RPC rquota.x | Glimmung | High Level Programming | 2 | 05-22-2008 01:42 PM |
| Active / Non Active users ? | varungupta | UNIX for Advanced & Expert Users | 3 | 05-11-2008 08:00 PM |
| Switching the active pts? | tspicher | UNIX for Dummies Questions & Answers | 4 | 06-25-2007 04:52 PM |
| active machine | Raom | UNIX for Advanced & Expert Users | 0 | 10-20-2005 10:10 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
active working
hi!
i want to create a list of the active working of the system classified by size and run the list on the monitor in a contolled pattern.Every active work has to appear only once. Any suggestions? also how can i create a list of the active working that does not belong to the user root?thanks |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
What do you understand by active working?
Size of what? Which OS? |
|
#3
|
|||
|
|||
|
active working
i mean active processes.
ps -auxf. i want to classify them by their size. |
|
#4
|
|||
|
|||
|
I am considering you need to list them by their memory size.You can use sort for the same.
This is something that might help, but untested. Code:
ps -auxf | tr -d " " | sort -n -t ' ' +3 Code:
ps -auxf | grep -v root |
|
#5
|
|||
|
|||
|
active working
forget about "controlled pattern".
it's ok. the 2nd one worked. what should i put inside '' '' and ' ' ? a bogus? what is a bogus? thank you.... |
|
#6
|
|||
|
|||
|
Don't put anything in it..
Is the first one not working..? |
|||
| Google The UNIX and Linux Forums |