I've downloaded and installed Android Studio and also added the path to my .bashrc
export PATH="~/android-studio/bin/:$PATH"
What I'm looking at now is that one command which will launch android studio from anywhere in the Ubuntu file system. For example if I type subl or atom anywhere it opens up the respective editor. Can something like that be done here?
~
in quotes, it won't get expanded to your home directory. Use$HOME
instead, or keep the~
outside the quotes. Test withecho $PATH
. – muru Jan 27 '15 at 14:28