? Earlier 2 items total Later ?

On this page:?

Stable sort

c.f. ruby-talk 133930

class Array
  def stable_sort
    n = 0
    sort_by {|x| n+= 1; [x, n]}
  end
end

Sort a list of processes by users into more

ps axu | sort -rn | more

? Earlier 2 items total Later ?