On an openSUSE 11.0 system:
# ps axfl | grep spamd 4 0 32331 3347 18 -2 46760 4176 select S< ? 388:16 _ /usr/bin/perl -T -w /usr/sbin/spamd --socketpath=/var/lib/bulwark/spamd --nouser-config --virtual-config-dir=/var/lib/bulwark/domains/%l/%d --siteconfigpath=/var/lib/bulwark/config --username=bulwark --max-children=25 --timeout-child=600 -r /var/run/spamd.pid
The line would be appropriately fold to fit the window.
On an openSUSE 12.2 system:
# ps axfl | grep spamd 0 0 10780 3670 20 0 2916 544 pipe_w S+ pts/2 0:00 _ grep --color=auto spamd 0 0 10778 1 20 0 11060 6968 - Rs ? 0:00 /usr/bin/perl -T -w /usr/sbin/spamd -d --socketpath=/var/lib/bulwark/spamd --nouser-config --virtual-config-dir=/var/lib/bulwark/domains/%l/%d --siteconfigpath=/var/li
The line is just truncated. Is there some setting I've missed?
* Per Jessen per@computer.org [12-07-12 13:13]:
On an openSUSE 11.0 system:
# ps axfl | grep spamd 4 0 32331 3347 18 -2 46760 4176 select S< ? 388:16 _ /usr/bin/perl -T -w /usr/sbin/spamd --socketpath=/var/lib/bulwark/spamd --nouser-config --virtual-config-dir=/var/lib/bulwark/domains/%l/%d --siteconfigpath=/var/lib/bulwark/config --username=bulwark --max-children=25 --timeout-child=600 -r /var/run/spamd.pid
The line would be appropriately fold to fit the window.
On an openSUSE 12.2 system:
# ps axfl | grep spamd 0 0 10780 3670 20 0 2916 544 pipe_w S+ pts/2 0:00 _ grep --color=auto spamd 0 0 10778 1 20 0 11060 6968 - Rs ? 0:00 /usr/bin/perl -T -w /usr/sbin/spamd -d --socketpath=/var/lib/bulwark/spamd --nouser-config --virtual-config-dir=/var/lib/bulwark/domains/%l/%d --siteconfigpath=/var/li
The line is just truncated. Is there some setting I've missed?
A function of bash or xterm (or what-ever term you utilize):
http://askubuntu.com/questions/24358/how-do-i-get-long-command-lines-to-wrap... google search; bash line wrap
http://tomayko.com/writings/StupidShellTricks google search: xterm line wrap
On 12/07/2012 07:10 PM, Per Jessen wrote:
# ps axfl | grep spamd 0 0 10780 3670 20 0 2916 544 pipe_w S+ pts/2 0:00 _ grep --color=auto spamd 0 0 10778 1 20 0 11060 6968 - Rs ? 0:00 /usr/bin/perl -T -w /usr/sbin/spamd -d --socketpath=/var/lib/bulwark/spamd --nouser-config --virtual-config-dir=/var/lib/bulwark/domains/%l/%d --siteconfigpath=/var/li
The line is just truncated. Is there some setting I've missed?
Not sure, maybe add "ww"? -> ps axflww Seems to work here.
Have nice day, Berny
Bernhard Voelker wrote:
On 12/07/2012 07:10 PM, Per Jessen wrote:
# ps axfl | grep spamd 0 0 10780 3670 20 0 2916 544 pipe_w S+ pts/2 0:00 _ grep --color=auto spamd 0 0 10778 1 20 0 11060 6968 - Rs ? 0:00 /usr/bin/perl -T -w /usr/sbin/spamd -d --socketpath=/var/lib/bulwark/spamd --nouser-config --virtual-config-dir=/var/lib/bulwark/domains/%l/%d --siteconfigpath=/var/li
The line is just truncated. Is there some setting I've missed?
Not sure, maybe add "ww"? -> ps axflww Seems to work here.
Thanks, that works here too, but in the older system (11.0) I get that (ww) by default when I pipe the output to grep. Something's changed.
/Per