mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-01 09:19:23 +01:00
7 lines
238 B
Bash
7 lines
238 B
Bash
|
#!/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.'
|