[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: top command results from an ssh



On Fri May 16 2008 04:39:10 avilella wrote:
> how can I get the results of doing a "top" sorted by memory usage from
> an ssh command?
>
> Sth like:
>
> ssh a-computer top
>
> Is this doable?

It's doable but ugly:

  ssh a-computer top -b -n1 | tail -n+8 | sort -n -k1.46,1.50

You might want to see if ps fits your needs, e.g.:

  ssh a-computer ps vax --sort=rss

--Mike Bird


Reply to: