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