Skip to content

Instantly share code, notes, and snippets.

@jUnG3
Created February 9, 2021 10:25
Show Gist options
  • Save jUnG3/5277f2b7d96b6fb94f501e7a91b968ad to your computer and use it in GitHub Desktop.
Save jUnG3/5277f2b7d96b6fb94f501e7a91b968ad to your computer and use it in GitHub Desktop.
Calculates the size of linked shared libs. The result value unit is kB.
#!/usr/bin/env bash
if [ $# -eq 0 ]; then
echo "No arguments supplied"
exit 1
fi
if [ -z "$1" ]; then
echo "Provide the path to the executable"
exit 1
fi
ldd "$1" | cut -d '>' -f2 | awk '{print $1}' | grep -E "^/" | xargs du -L | awk '{print $1}' | paste -s -d+ - | bc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment