Skip to content

Instantly share code, notes, and snippets.

@mjf
Last active July 9, 2021 11:40
Show Gist options
  • Save mjf/cc93243f2121523dcc1fe668ea915c1c to your computer and use it in GitHub Desktop.
Save mjf/cc93243f2121523dcc1fe668ea915c1c to your computer and use it in GitHub Desktop.
Huge Pages for PID
#! /bin/sh
[ $# -eq 1 ] && {
grep -B 11 'KernelPageSize' "/proc/$1/smaps" |
awk '/^Size:/ { sum += $2 } END { printf("%.2F GiB\n", sum / 1024 / 1024) }'
} || {
printf "Usage: %s PID\n" "${0##*/}" >&2
exit 1
}
# vi:ft=sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment