Skip to content

Instantly share code, notes, and snippets.

@btamayo
Last active April 11, 2020 04:59
Show Gist options
  • Save btamayo/96fe16a9b9b1b2ceca85d5a75f7bed99 to your computer and use it in GitHub Desktop.
Save btamayo/96fe16a9b9b1b2ceca85d5a75f7bed99 to your computer and use it in GitHub Desktop.
Admin Scripts and Snippets

00-admin-scripts-and-snippets.md

lsof \
| grep REG \
| grep -v "stat: No such file or directory" \
| grep -v DEL \
| awk '{if ($NF=="(deleted)") {x=3;y=1} else {x=2;y=0}; {print $(NF-x) " " $(NF-y) } }' \
| sort -n -u \
| numfmt --field=1 --to=iec
# From https://unix.stackexchange.com/a/382696/238581
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment