Skip to content

Instantly share code, notes, and snippets.

@zh4n7wm
Created April 15, 2019 08:07
Show Gist options
  • Select an option

  • Save zh4n7wm/05689bcfefb4a0caf897de7c11e177fa to your computer and use it in GitHub Desktop.

Select an option

Save zh4n7wm/05689bcfefb4a0caf897de7c11e177fa to your computer and use it in GitHub Desktop.
自动重启迅雷

Mac OSX 上的迅雷总是自动退出,下面的小脚本检查到迅雷退出就重新启动它

  while true; do sleep 3 && test -z "$(ps aux | grep -w Thunder | grep -vE 'grep|ThunderHelper')" && /Applications/Thunder.app/Contents/MacOS/Thunder ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment