Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place! |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
06-25-2012, 02:31 PM
|
#1
|
LQ Newbie
Registered: Jun 2012
Posts: 5
Rep:
|
Making a program executable from any directory with one command
Hello,
I am working on making a program executable with one command (more specifically, the program is MATLAB). I need to make it executable with just the command "matlab." I have tried making an alias with the following:
alias matlab='cd /pathway_to_matlab | ./matlab'
but the error I get is:
-bash: ./matlab: No such file or directory.
How do I make an alias that both gets me to the necessary directory AND executes the command ./matlab?
|
|
|
06-25-2012, 02:37 PM
|
#2
|
LQ Addict
Registered: Dec 2011
Location: UK
Distribution: Debian Sid AMD64, Raspbian Wheezy, various VMs
Posts: 7,680
|
I think just
Code:
alias matlab='/path/to/matlab/matlab'
should work.
|
|
|
06-25-2012, 02:56 PM
|
#3
|
LQ Guru
Registered: Nov 2010
Location: Colorado
Distribution: OpenSUSE, CentOS
Posts: 5,573
|
Several options...
Put this in your ~/.bashrc:
Code:
alias matlab='/path/to/matlab/matlab'
Or put this in your ~/.bashrc:
Code:
export PATH=${PATH}:/path/to/matlab
Or run this once (as root/sudo):
Code:
ln -s /path/to/matlab/matlab /usr/local/bin/
|
|
|
06-25-2012, 02:58 PM
|
#4
|
Member
Registered: Jun 2012
Distribution: Gentoo (Host), Arch (Guest), FreeBSD9, Android 2.3.6
Posts: 32
Rep:
|
@ Jobin1
An alias is not permanent. It is only temporary and you will lose it after closing a terminal or a reboot.
To make it permanent add the alias to your .bashrc file in your home folder.
|
|
|
06-25-2012, 04:06 PM
|
#5
|
Senior Member
Registered: Dec 2005
Location: Florida
Distribution: CentOS/Fedora/Pop!_OS
Posts: 2,983
|
can it be installed in /usr/bin/ if that is in the $PATH for the user?
|
|
|
06-25-2012, 04:34 PM
|
#6
|
LQ Newbie
Registered: Jun 2012
Posts: 5
Original Poster
Rep:
|
This might make things much more complicated (or maybe I'm just being stupid) but I dont appear to have a .bashrc file, at least not in my home directory. when I go to 'cd /root', and then use the command 'ls -a' I can see a .bashrc file, but it is read only and this is all on a remote terminal where I don't have permission to use sudo root or edit the .bashrc file... is this just something I am going to have to deal with (making the alias every time I log into the terminal)?
|
|
|
06-25-2012, 05:02 PM
|
#7
|
LQ Guru
Registered: Nov 2010
Location: Colorado
Distribution: OpenSUSE, CentOS
Posts: 5,573
|
You don't want to edit root's .bashrc file, unless you'll be doing this as root. Things you change in root's .bashrc will not affect regular users.
You just need to find the login file your system uses. It could be that your system uses .bashrc, and you just don't have one yet, or it could use something else like .profile, .bash_profile, etc. Are you using the BASH shell (echo $SHELL)?
|
|
|
All times are GMT -5. The time now is 01:14 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|