#!/bin/bash # origin https://gist.github.com/keith/5b5f61f4cc690aec403afd92aab020c3 altool="$(dirname "$(xcode-select -p)")/Applications/Application Loader.app/Contents/Frameworks/ITunesSoftwareService.framework/Support/altool" appleId="apple-id@example.com" echo "Validating app..." time "$altool" --validate-app --file "$1" --username "$appleId" --password @keychain:"Application Loader: $appleId" echo "Uploading app to iTC..." time "$altool" --upload-app --file "$1" --username "$appleId" --password @keychain:"Application Loader: $appleId"