Skip to content

Instantly share code, notes, and snippets.

@thermz
Created March 10, 2023 17:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thermz/ad8f3a1ccbf4691d38887a724490e490 to your computer and use it in GitHub Desktop.
Save thermz/ad8f3a1ccbf4691d38887a724490e490 to your computer and use it in GitHub Desktop.
A simple utility to get started as Java engineer on Mac OSx
#!/bin/zsh
echo "Installing Homebrew..."
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
echo "Installing Google Chrome..."
brew install --cask google-chrome
echo "Making Google Chrome the default browser..."
open -a "Google Chrome" --args --make-default-browser
echo "Installing Oh My Zsh..."
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
echo "Installing OpenJDK 11..."
brew install openjdk@11
echo "Installing Maven..."
brew install maven
echo "Installing Git..."
brew install git
echo "Installing MobaXTerm..."
brew install --cask mobaxterm
echo "Installing Docker..."
brew install --cask docker
echo "Installing Kubernetes..."
brew install kubernetes-cli
echo "Installing Intellij IDE Community..."
brew install --cask intellij-idea-ce
echo "Installing Postman..."
brew install --cask postman
echo "Installing Microsoft Teams..."
brew install --cask microsoft-teams
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment