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