Skip to content

Instantly share code, notes, and snippets.

@chenshaoju
Created July 13, 2016 01:59
Show Gist options
  • Save chenshaoju/a4dd53065a6874aeb6fbf5c8a92f6769 to your computer and use it in GitHub Desktop.
Save chenshaoju/a4dd53065a6874aeb6fbf5c8a92f6769 to your computer and use it in GitHub Desktop.
#!/system/bin/sh
# Get current swap usage for all running processes
# Original author:Erik Ljungstrom 27/05/2011
# Edit: @chenshaoju
# Use '|sort -n -k 5' to sort
SUM=0
OVERALL=0
for DIR in `find /proc/ -maxdepth 1 -type d | egrep "^/proc/[0-9]"` ; do
PID=`echo $DIR | cut -d / -f 3`
for SWAP in `grep Swap $DIR/smaps 2>/dev/null| awk '{ print $2 }'`
do
let SUM=$SUM+$SWAP
done
echo "PID=$PID - Swap used: $SUM"
let OVERALL=$OVERALL+$SUM
SUM=0
done
echo "Overall swap used: $OVERALL"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment