Skip to content

Instantly share code, notes, and snippets.

@fgimian
Last active June 30, 2019 17:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save fgimian/7de478fbbe5107ac605199642852451c to your computer and use it in GitHub Desktop.
Save fgimian/7de478fbbe5107ac605199642852451c to your computer and use it in GitHub Desktop.
# Generate a file containing all URLs for Logic Pro X content
curl -s http://audiocontentdownload.apple.com/lp10_ms3_content_2016/logicpro1023.plist | \
grep -B 1 DownloadSize | grep "<string>" | sed -e "s:.*<string>::" -e "s:</string>.*::" | \
sed "s;^;http://audiocontentdownload.apple.com/lp10_ms3_content_2016/;" > logic-pro-x-download-urls-2016.txt
# After generating the output file logic-pro-x-download-urls-2016.txt, I recommend opening it with Firefox
# and using DownloadThemAll to download all the URLs.
# When the downloads are complete, you may automatically install packages as follows
sudo -v
find . -type f -name "*.pkg" | while read package
do
sudo installer -pkg "$package" -target /
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment