Skip to content

Instantly share code, notes, and snippets.

@pcwu

pcwu/adobe.sh Secret

Last active April 24, 2020 05:36
Show Gist options
  • Save pcwu/fe628175ccb6739335f3947b017b1ce1 to your computer and use it in GitHub Desktop.
Save pcwu/fe628175ccb6739335f3947b017b1ce1 to your computer and use it in GitHub Desktop.
Adobe
#!/usr/bin/env bash
# Install command-line tools using Homebrew.
# Ask for the administrator password upfront.
sudo -v
# Keep-alive: update existing `sudo` time stamp until the script has finished.
while true; do sudo -n true; sleep 60; kill -0 "$$" || exit; done 2>/dev/null &
# Check for Homebrew,
# Install if we don't have it
if test ! $(which brew); then
echo "Installing homebrew..."
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
fi
# Make sure we’re using the latest Homebrew.
echo "Updating homebrew..."
brew update
# Upgrade any already-installed formulae.
echo "Upgrading homebrew..."
brew upgrade --all
# Install Cask
echo "Installing Cask..."
brew tap caskroom/cask
# Install Adobe
# Adobe softwares:
# adobe-acrobat adobe-arh adobe-digital-editions adobe-photoshop-cc
# adobe-after-effects-cc adobe-bloodhound adobe-dng-converter adobe-photoshop-lightroom
# adobe-air adobe-bridge-cc adobe-illustrator-cc adobe-premiere-pro-cc
# adobe-air-sdk adobe-creative-cloud adobe-indesign-cc adobe-reader
# adobe-animate-cc adobe-creative-cloud-cleaner-tool adobe-media-encoder-cc
echo "Installing Adobe Photoshop CC..."
brew cask install adobe-photoshop-cc
echo "Installing Adobe Photoshop Lightroom CC..."
brew cask install adobe-photoshop-lightroom
echo "Installing Adobe Bridge CC..."
brew cask install adobe-bridge-cc
echo "Installing Adobe Illustrator CC..."
brew cask install adobe-illustrator-cc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment