4

I've got to save the output of the top command into a variable and I do this:

myvar=`top -b -n1 | head -n 18`

The problem is that it seems to be ignoring the return characters, so when I echo the content of $myvar I see something like:

top - 15:15:38 up 745 days, 15:08, 5 users, load average: 0.22, 0.27, 0.32 Tasks: 133 total, 1 running, 132 sleeping, 0 stopped, 0 zombie Cpu(s): 6.4% us, 1.6%sy, 0.0% ni, 91.7% id, 0.3% wa, 0.0% hi, 0.0% si Mem: 2074716k total, 2038716k used, 36000k free, 84668k buffers Swap: 4192924k total, 107268k used, 4085656k etc...

How can I save all top data correctly?

animuson
  • 53,861
  • 28
  • 137
  • 147
Cristian
  • 198,401
  • 62
  • 356
  • 264
  • Do you want to save it as a bash array? Is there a specific piece of data you need? and wouldn't it be easier to write to a tmp file? – Steve B. Jan 26 '10 at 20:26

3 Answers3

17

Notice the difference:

#! /bin/bash

x=`top -b -n 1 | head -n 5`
echo $x
echo --------------------
echo "$x"

Output:

top - 14:33:09 up 7 days, 5:58, 4 users, load average: 0.00, 0.00, 0.09 Tasks: 253 total, 2 running, 251 sleeping, 0 stopped, 0 zombie Cpu(s): 1.6%us, 0.4%sy, 70.3%ni, 27.6%id, 0.0%wa, 0.0%hi, 0.0%si, 0.0%st Mem: 3926784k total, 3644624k used, 282160k free, 232696k buffers Swap: 9936160k total, 101156k used, 9835004k free, 1287352k cached
--------------------
top - 14:33:09 up 7 days,  5:58,  4 users,  load average: 0.00, 0.00, 0.09
Tasks: 253 total,   2 running, 251 sleeping,   0 stopped,   0 zombie
Cpu(s):  1.6%us,  0.4%sy, 70.3%ni, 27.6%id,  0.0%wa,  0.0%hi,  0.0%si,  0.0%st
Mem:   3926784k total,  3644624k used,   282160k free,   232696k buffers
Swap:  9936160k total,   101156k used,  9835004k free,  1287352k cached

Without the quotes, the contents of the variable are ground up in the shell's argument processing.

Greg Bacon
  • 134,834
  • 32
  • 188
  • 245
1

If you are looking for a particular piece of info within the top output i'd be inclined to filter the top output for what you're looking for before storing it rather than capture everything and then extract what you need.

Rob Wells
  • 36,220
  • 13
  • 81
  • 146
-1

You could pipe it out through sed to catch and transform the line breaks, e.g.

top -n1 | sed 's/\(.*\)$/\1__CUSTOM_LINE_MARKER/g'

will output the CUSTOM_LINE_MARKER after every line. though Rob Wells answer above is probably a better approach.

Steve B.
  • 55,454
  • 12
  • 93
  • 132