With the new console infrastructure in CakePHP 1.2 the way bake is used changed a bit. You now call it with:

cake bake

When using this command you will get this dialog:

[M]odel
[V]iew
[C]ontroller
What would you like to Bake? (M/V/C)

If you know what to bake, this dialog is rather bothering. Fortunately, it is now possible to skip this dialog by providing the type of what you want to bake directly on the command line:

cake bake controller  // for baking a controller
cake bake model  // for baking a model
cake bake view  // for baking views

Even with this shortcut there are still many questions you have to answer during the baking process…