Full command text with unix ps

shellunix

When we enter:

ps -f

… the CMD column text doesn't show the full command. Any way to prevent this truncating?

Seems like it's showing the first 80 characters. We are running a fairly log command that has lots of command line switches.


Thanks for the responses.. doesn't seem like any of these do the trick though..

Best Answer

Pipe the result into cat .. that'll ignore your terminal settings.

ps -f | cat
Related Question