/* -------------------------------------------------------------------------- */ /* Memory */ /* -------------------------------------------------------------------------- */ /** * ```bash * ps -eo pid,comm,%mem --sort=-%mem | head -n 6 * top -b -o +%MEM | head -n 15 * ``` */ export function getTopMemoryProcesses() { // TODO: Implement this function throw new Error('Not implemented'); }