Huakun Shen 6eeb228173
init
2025-01-18 03:58:42 -05:00

14 lines
471 B
TypeScript

/* -------------------------------------------------------------------------- */
/* 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');
}