I have a CakePHP shell program called 'match', which runs through my database performing some fairly complicated stuff.
I'm writing another shell so I can do some proof-of-concept simulation, this shell is called 'simulate'.
I need 'simulate' to be able to call 'match', then continue running. As the simulation will repeat many different scenarios over and over, manually running 'match' is not an option.
I've tried to App::import('shell','match'), but to no avail.
Help! Thanks.