Skip to content

Instantly share code, notes, and snippets.

@Kerollmops
Created September 16, 2019 20:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kerollmops/a768c30543af2d2a13df9997d54b967c to your computer and use it in GitHub Desktop.
Save Kerollmops/a768c30543af2d2a13df9997d54b967c to your computer and use it in GitHub Desktop.
Record %CPU and RSS
#!/bin/bash
while true; do
ps -p $1 -o\%cpu,rss | awk 'NR>1 { gsub(",",".",$1); print $1","$2}'
sleep 0.2
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment