cakephp2-php8/cake/scripts/cake
nate 877b3934fd Adding new CLI tools suite
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@4604 3807eeeb-6ff5-0310-8944-8be069107fe0
2007-03-09 23:15:03 +00:00

25 lines
650 B
Bash
Executable file

#!/bin/bash
################################################################################
#
# Bake is a shell script for running CakePHP bake script
#
# Authors:
# Garrett J. Woodworth
# Nate Abele
# <http://www.cakefoundation.org>
#
#
# This script was made in the hope it would make my life easier, feel free to
# use and abuse it as you see fit. However WITHOUT ANY WARRANTY. So if this
# script causes your computer to tell bad jokes, its not our problem.
#
################################################################################
LIB=${0/%cake/};
APP=`pwd`/;
exec php -q ${LIB}dispatch.php "$@" -working "${APP}"
echo " ";
exit;