Ho il seguente in .bash_profile:
export PATH="/Library/PostgreSQL/9.5/bin/:${PATH}"
L'ho provato anche senza la stringa:
export PATH=/Library/PostgreSQL/9.5/bin/:$PATH
So per certo che un eseguibile vive nella directory bin:
$ cd /Library/PostgreSQL/9.5/bin
$ ./psql
psql: FATAL: password authentication failed for user
Tuttavia, quando aggiungo il percorso a .bash_profile e poi source .bash_profile (e anche riavvia il terminale), ottengo il seguente:
$ psql
-bash: psql: command not found
Che cosa sto sbagliando?