mirror of
https://github.com/kunkunsh/kunkun-ext-system-info.git
synced 2025-04-04 19:26:43 +00:00
14 lines
471 B
TypeScript
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');
|
|
}
|