Skip to content

Instantly share code, notes, and snippets.

@ruskotron
ruskotron / gist:1886015
Created February 22, 2012 16:58
Skype Watchdog
while sleep 1; do top -b | awk '$12 != "skype" {next} {print} $9 < 90 {n=0;next} {n+=1} n > 10 {exit}' ; pkill -9 "^skype$" ; skype & done