5 Zeilen
97 B
Bash
Ausführbare Datei
5 Zeilen
97 B
Bash
Ausführbare Datei
#!/bin/sh
|
|
#
|
|
pid=`ps -aef | grep -i 'smarthome.py' | grep -v 'grep' | awk '{print $2}'`
|
|
kill $pid
|