mirror of
https://github.com/kxgx/2.13-Ink-screen-clock.git
synced 2026-03-18 07:33:16 +08:00
8 lines
170 B
Bash
8 lines
170 B
Bash
#!/bin/bash
|
|
dir=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
|
|
pid=`ps -ef |grep $dir/main.py | grep -v grep |awk '{print $2}'`
|
|
for id in $pid
|
|
do
|
|
kill -9 $id
|
|
done
|