mirror of
https://github.com/edu4rdshl/linuxscripts.git
synced 2026-07-18 07:34:45 +00:00
4 lines
141 B
Bash
4 lines
141 B
Bash
#!/usr/bin/bash
|
|
#Este script muestra que aplicaciones consumen más RAM y CPU en tu equipo.
|
|
|
|
ps -eo pid,ppid,cmd,%mem,%cpu --sort=-%mem|head
|