This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
USER="CHANGE_NAME" | |
NAME=traktscrobbler | |
PIDFILE=/var/run/$NAME.pid | |
DAEMON=/usr/bin/python | |
SCRIPT=/CHANGE/PATH/TO/Plex-Trakt-Scrobbler/script.py | |
case "$1" in | |
start) | |
echo "Starting $NAME" | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Bash script to generate a "Release" Build - Based on arrix.blogspot.com code | |
# - The file must lay on the same .xcodeproj folder | |
# - Project must be set up with "Debug" (with developer provisioning profiles) | |
# and "Release" (with distribution provisioning profiles) | |
# - Project build version will be upgraded with the current datetime and marketing version | |
# will be the same provided as the second parameter of the script: see USAGE. | |
# | |
# USAGE: sh build.sh AppName 0.1.1 |
NewerOlder