Index: drush
===================================================================
--- drush	(revision 116)
+++ drush	(working copy)
@@ -31,14 +31,14 @@
 
 # Special case for MAMP, since it is not the default php on a vanilla install.
 if [ -f /Applications/MAMP/bin/php5/bin/php ]; then
-  /Applications/MAMP/bin/php5/bin/php $SCRIPT_PATH "$@"
+  /Applications/MAMP/bin/php5/bin/php -q $SCRIPT_PATH "$@"
 else
   # We check for a command line (cli) version of php, and if found use that.
   /usr/bin/env php-cli -v &> /dev/null
   if [ "$?" = 0 ] ; then
-    /usr/bin/env php-cli $SCRIPT_PATH "$@"
+    /usr/bin/env php-cli -q $SCRIPT_PATH "$@"
   else
     # Alternatively we run with straight php, which works on most other systems.
-    /usr/bin/env php $SCRIPT_PATH "$@"
+    /usr/bin/env php -q $SCRIPT_PATH "$@"
   fi
 fi
