8 lines
168 B
Bash
8 lines
168 B
Bash
|
#!/bin/sh
|
||
|
# launcher.sh
|
||
|
# navigate to home directory, then to this directory, then execute python script, then back home
|
||
|
|
||
|
cd /
|
||
|
cd home/pi
|
||
|
sudo python Photobooth.py
|
||
|
cd /
|