df2daf524d
Signed-off-by: Nico Schottelius <nico@manager.schottelius.org>
8 lines
210 B
Bash
Executable file
8 lines
210 B
Bash
Executable file
#!/bin/sh
|
|
|
|
#PIDS=$(ps axuwww | awk '/\/usr\/bin\/btdownloadcurses/ { print $2 }')
|
|
PIDS=$(ps axuwww | awk '/\/usr\/bin\/btdownloadheadless/ { print $2 }')
|
|
|
|
kill -TERM $PIDS
|
|
sleep 10
|
|
kill -KILL $PIDS 2>/dev/null
|