Tag: top

  • top

    top

    top command is used to see current system resource usage

    To show the current process

    top -n 1 -b

    Top sorted by memory

    top -b -n 1 -o %MEM | sort -nk 6

    Delay 3 second

    top -cd3

    Back to Linux Commands