forked from XPUB/si_7-IRIS
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
153 B
Bash
10 lines
153 B
Bash
6 years ago
|
#!/bin/sh
|
||
|
|
||
|
DIR=/var/www/html/lifeHackAgent/
|
||
|
while [ 1 ]
|
||
|
do
|
||
|
python "$DIR"motion_detector_2.py -a 10
|
||
|
python "$DIR"guru-pirate.py
|
||
|
sleep 10
|
||
|
done
|