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..
07 Answers
Pipe the result into cat .. that'll ignore your terminal settings.
ps -f | cat I found this on my FreeBSD's 9 ps man page:
-w Use 132 columns to display information, instead of the default which is your window size. If the -w option is specified more than once, ps will use as many columns as necessary without regard for your window size. Note that this option has no effect if the “command” column is not the last column displayed.
So:
ps auxwwDid what I wanted.
HTH!
2If /usr/ucb dir exists then you may try following command
/usr/ucb/ps -auxww | grep java ps detects the size of your terminal window and clips to that.
Solution: don't output directly to the terminal!
ps -f | less man ps:
-w Use 132 columns to display information, instead of the default which is your window size. If the -w option is specified more than once, ps will use as many columns as necessary without regard for your window size. When output is not to a terminal, an unlimited number of columns are always used.
Hence
ps -f | catworks
more works perfectly for me
ps -ef |more G'day,
Don't forget that -eaf works with normal ps only and not luddite ucb ps.
Ucb ps uses multiple -w options to give you the complete command line.
HTH
cheers,