Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I launch pgAdmin3 from command line?

Tags:

bash

pgadmin

Is there a way to launch pgAdmin3 from the Unix command line? I installed pgAdmin from pgadmin.org but I don't know where it was installed.

I've searched my /usr tree for pgadmin\* and pgAdmin\* to no avail.

I've also searched for the answer on the Internet but didn't find an answer.

The pgAdmin Command Line Parameters doc page discusses parameters you can use to launch pgAdmin but it doesn't discuss the executable itself.

like image 475
Jim Avatar asked Mar 18 '26 15:03

Jim


1 Answers

Like any program, you can launch it by calling its name:

pgadmin3 &

If it is not in one of the directories in your search path $PATH, you should use the complete pathname:

/path/to/the/program/pgadmin3 &
like image 179
wildplasser Avatar answered Mar 21 '26 16:03

wildplasser



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!