av/cmd/looper/rc.local

13 lines
345 B
Plaintext
Raw Normal View History

2020-02-28 08:36:46 +03:00
#!/bin/sh -e
# /etc/rc.local
# This script launches audio looper at boot time
printf "rc.local started" # show start of execution
set -x # tell sh to display commands before execution
PLAYERPATH=/home/pi/go/src/bitbucket.org/ausocean/av/cmd/looper
2020-02-28 08:36:46 +03:00
cd $PLAYERPATH
sudo ./looper -path=/home/pi/example.mp3 &
2020-02-28 08:36:46 +03:00
exit 0