OS 별 ps 커맨드 끝까지 다 보기
벤더별 ps 명령어로 명령어 라인 모두 보기
1) solaris
/usr/ucb/ps -auxww
-a Includes information about processes owned by others.
-u Displays user-oriented output. This includes fields USER, %CPU, %MEM, SZ, RSS, and START as described below.
-x Includes processes with no controlling terminal.
-w Uses a wide output format (132 columns rather than 80). If the option letter is repeated, that is, -ww, uses arbitrarily wide
output. This information is used to decide how much of long commands to print.
2) hp-ux
ps -ex
-e Select all processes.
-x Shows the command line in extended format.
3) linux
ps -auxww
-a select all processes on a terminal, includ-ing those of other users
-u user user name
-x select processes without controlling ttys
-w wide output
4) AIX
ps -aeww
-a Displays information about all processes with terminals (ordinarily only the user's own processes are displayed).
-eww Wraps display from the e flag as many times as necessary.