Skip to content

Instantly share code, notes, and snippets.

@mikemorris
Forked from tobiassjosten/symfony.sh
Created March 21, 2012 17:25
Show Gist options
  • Save mikemorris/2149820 to your computer and use it in GitHub Desktop.
Save mikemorris/2149820 to your computer and use it in GitHub Desktop.
#!/bin/bash
# Expand globs to null when there are no matches
shopt -s nullglob
# Look for either a '<subdir>/console' or a 'symfony' file
until
file=(*/console symfony); [[ -f "$file" ]] && php "$file" "$@" && exit;
do
[[ "$PWD" == "/" ]] && break;
cd ..
done
echo 'No Symfony file could be found!'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment