Skip to content

Instantly share code, notes, and snippets.

@yazanmonshed
Created January 17, 2023 10:34
Show Gist options
  • Save yazanmonshed/b9a285090dc5ca99b1113a12f2317059 to your computer and use it in GitHub Desktop.
Save yazanmonshed/b9a285090dc5ca99b1113a12f2317059 to your computer and use it in GitHub Desktop.
Display top processes in system
#!/bin/bash
# Display the top 10 processes by memory usage
ps aux --sort=-%mem | head -n 11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment