This file contains hidden or 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 | |
ver=9.2 | |
if ! [ -d "/Applications/IDA Professional ${ver}.app" ]; then | |
echo "IDA Professional ${ver}.app not installed in /Applications" | |
exit 1 | |
fi | |
if ! plutil -lint /Library/Preferences/com.apple.TimeMachine.plist >/dev/null; then |
This file contains hidden or 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 | |
if ! [ -d "/Applications/Beyond Compare.app" ]; then | |
echo "Beyond Compare.app not installed in /Applications" | |
exit 1 | |
fi | |
if ! plutil -lint /Library/Preferences/com.apple.TimeMachine.plist >/dev/null; then | |
echo "This script requires your terminal app to have Full Disk Access." | |
echo "Add this terminal to the Full Disk Access list in System Preferences > Security & Privacy, quit the app, and re-run this script." |
This file contains hidden or 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 | |
CDN_LOCATION="cdn" # (cdn=EU, cdn2=US) | |
VERSION="12.2.5" # https://www.ableton.com/en/release-notes/live-12/ | |
EDITIONS=("suite" "standard" "intro" "lite") | |
PLATFORMS=("64.zip" "universal.dmg" "intel.dmg") | |
for PLATFORM in "${PLATFORMS[@]}"; do | |
for EDITION in "${EDITIONS[@]}"; do | |
echo "https://${CDN_LOCATION}-downloads.ableton.com/channels/${VERSION}/ableton_live_${EDITION}_${VERSION}_${PLATFORM}" | |
done |