If I do ps ax in Terminal, the result will be like this:

  PID   TT  STAT      TIME COMMAND
    1   ??  Ss     2:23.26 /sbin/launchd
   10   ??  Ss     0:08.34 /usr/libexec/kextd
   11   ??  Ss     0:48.72 /usr/sbin/DirectoryService
   12   ??  Ss     0:26.93 /usr/sbin/notifyd

While if I do echo $(ps ax), I get:

PID TT STAT TIME COMMAND 1 ?? Ss 2:23.42 /sbin/launchd 10 ?? Ss 0:08.34 /usr/libexec/kextd 11 ?? Ss 0:48.72 /usr/sbin/DirectoryService 12 ?? Ss 0:26.93 /usr/sbin/notifyd

Why?

And how do I preserve the newlines and tab characters?

link|improve this question

80% accept rate
Where do you want to use the output again? – sehe Jul 7 '11 at 19:30
feedback

6 Answers

up vote 3 down vote accepted

Same way as always: use quotes.

echo "$(ps ax)"
link|improve this answer
feedback

That's because echo isn't piping at all--it's interpreting the output of ps ax as a variable, and (unquoted) variables in bash essentially compress whitespace--including newlines.

If you want to pipe the output of ps, then pipe it:

ps ax | ... (some other program)
link|improve this answer
Ok, say i want to do ps ax | grep foobar it still messes the design up. – Tyilo Jul 7 '11 at 19:30
I use that construct all the time, and it works great for me. If you think the output is incorrect when actually piping, please provide additional details in your question. – Flimzy Jul 7 '11 at 19:31
1  
Nope, just me being totally stupid – Tyilo Jul 7 '11 at 19:40
feedback

Simply use double-quotes in the variable that is being echo'd

echo "$(ps ax)"

this will do it without all that extra junk coding or hassle.

edit: ugh... someone beat me to it! lol

link|improve this answer
feedback

Rethink your problem/solution.

When you want $(ps ax) - with preserved newlines - USUALLY mean a bad design and you probably want use pipes or redirection. Usually - so, maybe it is ok - really wondering what you want achieve. :)

link|improve this answer
feedback

Or if you want to have line-by-line access:

readarray psoutput < <(ps ax)

# e.g.
for line in "${psoutput[@]}"; do echo -n "$line"; done

This requires a recent(ish) bash version

link|improve this answer
feedback

Are you talking about piping the output? Your question says "pipe", but your example is a command substitution:

ps ax | cat  #Yes, it's useless, but all cats are...

More useful?

ps ax | while read ps_line
do
   echo "The line is '$ps_line'"
done

If you're talking about command substitution, you need quotes as others have already pointed out in order to force the shell not to throw away whitespace:

echo "$(ps ax)"
foo="$(ps ax)"
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.