I can check that there is a problem with your $PATH :
/usr/local//usr/local/mysql/bin/private/var/mysql/private/var/mysql/bin.
$PATH is where the shell searches for command files. Folders to look in got to be separated with a colon. And so you want /usr/local/mysql/bin/ in your path but instead it searches in /usr/local//usr/local/mysql/bin/private/var/mysql/private/var/mysql/bin , which probably doesn't exist.
Instead you want ${PATH}:/usr/local/mysql/bin .
So do export PATH=${PATH}:/usr/local/mysql/bin.
If you want this to be run every time you open terminal put it in the file .bash_profile , which is run when Terminal opens.
If you would like this to be run whenever you open terminal, put it within the file .bash_profile , which is run when Terminal opens.
I hope this helps !
Want to know more about SQL ? Join SQL Certification now !