[Bug 4826] If 'args' is specified as a column name to 'ps -o', any column names given after args are ignored
bugzilla at busybox.net
bugzilla at busybox.net
Thu Mar 1 07:04:56 UTC 2012
https://bugs.busybox.net/show_bug.cgi?id=4826
--- Comment #1 from Denys Vlasenko <vda.linux at googlemail.com> 2012-03-01 07:04:56 UTC ---
> Whereas this shows only the args column:
>
> ps -o args -o user -o group
This is caused by the large width of args column by default - it is 2048 chars.
The total width of ps output is capped by the same value, therefore any columns
after args are never visible - they are truncated.
Try this:
ps -o args=ARGS.................. -o user -o group
This will specify the header, and therefore the width of args column to be less
than the default.
--
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
More information about the busybox-cvs
mailing list