Skip to content

Instantly share code, notes, and snippets.

@imikay
Created October 17, 2012 08:03
Show Gist options
  • Save imikay/3904310 to your computer and use it in GitHub Desktop.
Save imikay/3904310 to your computer and use it in GitHub Desktop.
Windows command for Symfony to avoid typing php app/console every time.
@echo off
pushd .
cd %~dp0
cd "app"
set BIN_TARGET=%CD%\console
popd
php "%BIN_TARGET%" %*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment