mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-01 09:19:23 +01:00
5ab7b507be
Again, we're trying to prevent the software from frying people's CPUs...
7 lines
238 B
Bash
Executable File
7 lines
238 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Script to kill PyLink quickly when running under CPUlimit, since
|
|
# it will daemonize after threads are spawned and Ctrl-C won't work.
|
|
|
|
kill $(cat pylink.pid)
|
|
echo 'Killed. Press Ctrl-C in the PyLink window to exit.'
|