Skip to content

Instantly share code, notes, and snippets.

@tobiassjosten
Created January 12, 2010 22:24
Show Gist options
  • Save tobiassjosten/275690 to your computer and use it in GitHub Desktop.
Save tobiassjosten/275690 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!'
@felds
Copy link

felds commented Jul 7, 2011

that's a great little piece of code! thanks!

@tobiassjosten
Copy link
Author

Enjoy! :)

@cordoval
Copy link

it is not clear if this is the last version or not

@cordoval
Copy link

I guess this is the last version, I have another version at http://www.craftitonline.com

@tobiassjosten
Copy link
Author

Why would it not be the latest version? Take a look at the top right for the revision list.

Also that is not "another version" you have at your blog. It is my script, blatantly plagiarized, with poor understanding of the code and no improvements. Please use the built-in fork feature here at GitHub if you feel like actually contributing.

@cordoval
Copy link

cordoval commented Jul 16, 2011 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment