Updated bash completion script for OSX and Grails 1.1 & 1.2
Fernando Takai wrote an excellent bash completion script (also available here, originally from Ted Naleid), which makes calling Grails commands much easier.
Some examples:
Within a Grails application directory, listing all available commands:
myapp> grails [tab][tab]
bootstrap create-integration-test generate-controller list-plugins_ set-version
bug-report create-plugin_ generate-views package shell
clean create-script help_ package-plugin_ stats
compile create-service init plugin-info_ test-app
console create-tag-lib install-dependency release-plugin tomcat
create-app_ create-unit-test install-plugin run-app uninstall-plugin
create-controller dependency-report install-templates run-war upgrade
create-domain-class doc integrate-with schema-export war
create-filters generate-all list-plugin-updates set-proxy_
Within a Grails application directory, completing a command:
myapp> grails run-[tab][tab]
run-app run-war
Outside of a Grails application directory, listing all available commands:
home> grails [tab][tab]
create-app create-plugin help list-plugins package-plugin plugin-info set-proxy
Changes
I updated the script to adapt it to new Grails versions and made some minor changes:
* works with plugin provided scripts in Grails version >= 1.1, were plugins are stored under $HOME/.grails/grailsversion/projects/appname/plugins.
* detects the Grails version from $GRAILS_HOME instead of choosing the latest version from $HOME/.grails.
* adapts to different locations of plugins-list.xml, which changed with newer Grails versions
* does not need gawk (which is not installed by default on OSX)
My version of the script was tested with Grails 1.2 and OSX Snow Leopard and can be found at GitHub or below.
Installation
Save the script to an appropriate path (e.g. ~/bin/grails-bash-completion.sh)
[ -r ~/bin/grails-bash-completion.sh ] && source ~/bin/grails-bash-completion.sh
The complete Script