Skip to content

Instantly share code, notes, and snippets.

@mborodov
Last active July 20, 2018 13:40
Show Gist options
  • Save mborodov/29655085d0eb7d89465c639a426097dc to your computer and use it in GitHub Desktop.
Save mborodov/29655085d0eb7d89465c639a426097dc to your computer and use it in GitHub Desktop.
Script for automatic install Mac OSX soft
#!/bin/sh
# install homebrew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# verify homebrew installation
# TODO handle output to figure out whether to processed further
brew doctor
## setup basic packets
# wget
brew install wget
# Mindnight Commander
brew install mc
# Tree utility
brew install tree
# Git
brew install git
## setup cask packets
# Caskroom
brew install caskroom/cask/brew-cask
# Google Chrome
brew cask install google-chrome
# Phpstorm
brew cask install phpstorm
# Sequel Pro
brew cask install sequel-pro
# Cyberduck
brew cask install cyberduck
# Ngrok
brew cask install ngrok
# Docker
brew cask install docker
# Viber
brew cask install viber
# The Unarchiver
brew cask install the-unarchiver
# Flash plugin
brew cask install flash
# Snag it
brew cask install snagit
# Team Viewer
brew cask install teamviewer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment