Created
November 19, 2015 13:43
-
-
Save aleron75/7c159d7eef532e3b0cac to your computer and use it in GitHub Desktop.
XEBUG on/off alias
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
alias xdebugon='export XDEBUG_CONFIG="idekey=phpstorm-xdebug" && sudo mv /etc/php5/mods-available/xdebug.ini.no /etc/php5/mods-available/xdebug.ini && sudo service apache2 restart' | |
alias xdebugoff='sudo mv /etc/php5/mods-available/xdebug.ini /etc/php5/mods-available/xdebug.ini.no && sudo service apache2 restart' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment