Skip to content

Instantly share code, notes, and snippets.

@angelbladex
Created July 23, 2015 20:11
Show Gist options
  • Save angelbladex/7abf81d7aa079218f3ff to your computer and use it in GitHub Desktop.
Save angelbladex/7abf81d7aa079218f3ff to your computer and use it in GitHub Desktop.
Get size of each kernel module on KB
#!/bin/bash
lsmod | awk '{$2/=1024; printf "%s %.2fKB\n",$1,$2}' | sed 's/\./,/g' | awk '{if (NR!=1) {print}}' | column
@angelbladex
Copy link
Author

sed is optional if your decimal separator is a period.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment