I have MAMP installed. Now I am trying to run a script from the command line, but I can't seem to get it to work.
How should I set up my environment so that I can run a script from the command line and use the PHP version I installed with MAMP?
Update: I agree with jjeaton below, here is a nice solution of creating an alias to MAMP's PHP:
# add this to your ~/.bash_profile
alias phpmamp='/Applications/MAMP/bin/php/php5.3.6/bin/php'
Now you can use it from the command line:
$ phpmamp --help