cake 802 B

12345678910111213141516171819202122232425
  1. #!/bin/bash
  2. ################################################################################
  3. #
  4. # Bake is a shell script for running CakePHP bake script
  5. # PHP 5
  6. #
  7. # CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
  8. # Copyright 2005-2011, Cake Software Foundation, Inc.
  9. #
  10. # Licensed under The MIT License
  11. # Redistributions of files must retain the above copyright notice.
  12. #
  13. # @copyright Copyright 2005-2011, Cake Software Foundation, Inc.
  14. # @link http://cakephp.org CakePHP(tm) Project
  15. # @package app.console
  16. # @since CakePHP(tm) v 2.0
  17. # @license MIT License (http://www.opensource.org/licenses/mit-license.php)
  18. #
  19. ################################################################################
  20. LIB=${0/%cake/}
  21. APP=`pwd`
  22. exec php -q ${LIB}cake.php -working "${APP}" "$@"
  23. exit;