Full command text with unix ps

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..

0

7 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 auxww

Did what I wanted.

HTH!

2

If /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 | cat

works

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,

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like