Created
March 2, 2017 09:38
-
-
Save dehio3/f55bb5ab1916d645433fc0676d5bde16 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
ps aux | gawk -v time=`date '+%Y/%m/%d_%H:%M:%S'` '{ mem[$11] += $6 }END{for (i in mem){if(mem[i]!~/^0$/){printf("\"%s\",\"%s\",\"%s\"\n",time,i,mem[i])}}}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment