This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Use this script to install or re-install multiple versions of PHP | |
# You should be able to re-run the script multiple times; it will update/reinstall what it needs. | |
# Check OS | |
if [ "${OSTYPE//[0-9.]/}" != "darwin" ]; then | |
echo "This script is intended for OSX users." | |
exit |