Skip to content

Instantly share code, notes, and snippets.

@rodnaph
Created September 22, 2012 22:06
Show Gist options
  • Save rodnaph/3767990 to your computer and use it in GitHub Desktop.
Save rodnaph/3767990 to your computer and use it in GitHub Desktop.
Toggle Macports XDebug
#!/bin/sh
TOGGLE="deactivate"
if [ "`php -i | grep xdebug`" = "" ]; then
TOGGLE="activate"
fi
sudo port $TOGGLE php5-xdebug
sudo apachectl stop
sudo apachectl start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment