Skip to content

Instantly share code, notes, and snippets.

@masnun
Created January 5, 2014 17:57
Show Gist options
  • Save masnun/8271570 to your computer and use it in GitHub Desktop.
Save masnun/8271570 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