1748250 Members
3440 Online
108760 Solutions
New Discussion юеВ

Re: XPG4 and UNIX95

 
SOLVED
Go to solution
hpuxrox
Respected Contributor

XPG4 and UNIX95

Hello everyone,

Im looking for usage examples of XPG4 and UNIX95 variables(other than the ps man page).

Anyone have any tips and tricks with these variables?


3 REPLIES 3
H.Merijn Brand (procura
Honored Contributor

Re: XPG4 and UNIX95

/usr/share/doc/ux95.ps

PostScript document
Enjoy, Have FUN! H.Merijn
S.K. Chan
Honored Contributor
Solution

Re: XPG4 and UNIX95

A brief article about UNIX95 and it mentioned about an online documentation you can get from /usr/share/docs/ux95.ps

http://searchhp.techtarget.com/tip/1,289483,sid6_gci525936,00.html?FromTaxonomy=%2Fpr%2F6f9

James R. Ferguson
Acclaimed Contributor

Re: XPG4 and UNIX95

Hi:

Bill Hassell contributed this, now classic, method for rapidly viewing memory utilization at a process level:

# UNIX95= ps -e -o "user,vsz,pid,ppid,args"|sort -rnk2|more

Note carefully that a space character follows the 'UNIX95' variable declaration and that the 'ps' command begins without any interceding delimiter. Thus, the variable UNIX95 is set only for the one command line. To do otherwise, might break otherwise correctly functional scripts.

Regards!

...JRF...