Tagged Questions

8
votes
6answers
243 views

return code of system()

#include <stdlib.h> #include <string.h> #include <stdio.h> int main() { int res = system("ps ax -o pid -o command | grep sudoku | grep gnome > /dev/null"); printf("res = %d ...
4
votes
3answers
418 views

Getting The Full Result from “ps”

How do I get the full width result for the *nix command "ps"? I know we can specify something like "--cols 1000" but is there anyway I can the columns and just print out everything?
3
votes
3answers
2k views

Processlist

How do I get a process list of all running processes from Python, on Unix, containing then name of the command/process and process id, so I can filter and kill processes.
2
votes
1answer
53 views

Sorting results of ps by start time

I'm displaying information about the current processes using this variety of the ps command: ps -eo pid,start,stime,command How can I sort these results by start? I've read man ps and tried -m, -r ...
2
votes
2answers
130 views

Group processes with ps

I want to use ps on my desktop through geektools to see what processes are using what. Currently my command is: ps -amcwwwxo "command %mem %cpu" | grep -v grep | head -13 The problem with this, is ...
1
vote
2answers
93 views

How to use the S-output-modifier with Unix/Linux command ps?

The command ps -o time -p 21361 works; however what I need is the running time of the process including all the children. For example, if 21361 is a bash script, which calls other scripts, then I ...
1
vote
1answer
45 views

How can i get my process back

I accidently closed my terminal window ( iTerm2 ) i am running OSX Lion, i just ran sudo port upgrade outdated and i was hoping i can get the output back on my terminal, the process didn't quit i ...
1
vote
4answers
1k views

Is there any way to get ps output programmatically?

I've got a webserver that I'm presently benchmarking for CPU usage. What I'm doing is essentially running one process to slam the server with requests, then running the following bash script to ...
0
votes
1answer
40 views

How to detect if a process is running on any of the nodes in a multiple node Grid in UNIX

My server is using a GRID. we have 3 nodes [any one of them could execute my script when i kick off the autosys job ] Now my problem is if am trying to stop a job from running if it is already ...
0
votes
3answers
679 views

Extend ps output to more than 80 characters in Solaris 8

How do you extend the output of ps -fe in Solaris so that it displays more than 80 characters? My process has several arguments and the process name could not be displayed anymore.
0
votes
2answers
362 views

Hiding process from process list

How do I hide the name of process from process list and from /proc/pid/cmdline. If process name is seen in process list then it is fine, but arguments of it should not come in the list. Cause ...
0
votes
0answers
284 views

get exact argument list of a process using ps

I am writing a session saver for GNU Screen. It needs to get every process argument list. Linux has /proc/PID/cmdline which separates arguments with \0. Solaris has pargs. But I am looking for a more ...