Tengo lo siguiente en .bash_profile:
export PATH="/Library/PostgreSQL/9.5/bin/:${PATH}"
Incluso lo intenté sin la cadena:
export PATH=/Library/PostgreSQL/9.5/bin/:$PATH
Estoy seguro de que un ejecutable vive en ese directorio bin:
$ cd /Library/PostgreSQL/9.5/bin
$ ./psql
psql: FATAL: password authentication failed for user
Sin embargo, cuando agrego la ruta a .bash_profile y luego a la fuente .bash_profile (e incluso reinicio la terminal), obtengo lo siguiente:
$ psql
-bash: psql: command not found
¿Qué estoy haciendo mal?