Skip to content

Instantly share code, notes, and snippets.

@wieseljonas
wieseljonas / osx_setup_script_dev.sh
Last active February 6, 2022 08:21
osx_setup_script_dev.sh
#!/bin/sh
# Install Script for OSX
# To execute: save and `chmod +x ./brew-install-script.sh` then `./brew-install-script.sh`
# echo "Installing xcode"
# xcode-select --install
echo "Installing brew..."
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
@wieseljonas
wieseljonas / osx_setup_script_basic.sh
Created January 8, 2018 18:25
OSX mac setup script
#!/bin/sh
# Install Script for OSX
# To execute: save and `chmod +x ./brew-install-script.sh` then `./brew-install-script.sh`
echo "Installing xcode"
xcode-select --install
echo "Installing brew..."
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"