Kbase P132304: How to check all command line arguments of a process on HPUX?
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  6/12/2008 |
|
Status: Unverified
GOAL:
How to check all command line arguments of a process on HPUX?
GOAL:
How to see all command line arguments of a process on HPUX?
FACT(s) (Environment):
HP-UX
FIX:
ps -elx will display the long listing of all processes and all command line arguments.
To limit the output to specific processes, consider piping the output of the ps command to grep.
Example:
ps -elx | grep <username>
or
ps -elx | grep <processname>