Skip to content

Instantly share code, notes, and snippets.

@joshlong
Created December 13, 2022 17:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joshlong/c8a1b66cda090b213d865c02ac33756c to your computer and use it in GitHub Desktop.
Save joshlong/c8a1b66cda090b213d865c02ac33756c to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
PID=${1}
RSS=`ps -o rss ${PID} | tail -n1`
RSS=`bc <<< "scale=1; ${RSS}/1024"`
echo "${PID}: ${RSS}M"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment