Find A Command’s Binary

Today’s article should actually be fairly short and simple, as we learn how to find a command’s binary. For those of you who are new, I’ll do what I can to make this more clear. At the end of the day, all should become clear and it really shouldn’t take all that long.

So, when you run a command in the terminal, you’re calling the binary file that is that program. This is also true when you’re starting a command in a GUI environment. You’re loading a binary file. Well, no… You could be loading some sort of script – but most of the time you’re going to be loading a binary.

Well, what we’re going to do is show you where to find these binaries by using the ‘which’ command in the terminal.

HINT: They’re generally tucked away in /usr/bin/!

The command we’ll be using is the ‘which’ command. It’s a very simple command to use when you just want to find a command’s binary. If you run the ‘man which‘ command (not the sandwich made from burger) you’ll find it is described accurately, and as thus:

which – locate a command

And, that’s really all the command we need for this exercise. It’s dirt simple, but still worthy of its own article. Ready?

How To: Find A Command’s Binary:

Yup. You guessed it. We’ll be using the terminal for this article. We do that a lot at this site. So, open up your default terminal emulator. If you don’t know how to open the terminal, you can do so with your keyboard – just press CTRL + ALT + T and your default terminal should open.

With your terminal now open, try any one of the following:

Or:

Perhaps:

That’s right, the entire usage is just:

It even works for proprietary things, like:

If you want to be more curious, you can even find the binary for the very ‘which’ we’re using in this article:

See? This is so dirt simple that an absolute n00b can be up and using the ‘which’ command pretty much instantly! Using the terminal doesn’t have to be complicated. You can get comfortable using the terminal in just a few days and you’ll be better for it.

Closure:

So, yeah, that’s all the article you really need when your goal is to find a command’s binary file. It’s not even a wee bit difficult – and is a great way to explore the terminal when you’re new to it. Have fun!

Thanks for reading! If you want to help, or if the site has helped you, you can donate, register to help, write an article, or buy inexpensive hosting to start your own site. If you scroll down, you can sign up for the newsletter, vote for the article, and comment.

How To: String Commands Together In The Terminal

Today’s article is about how you can string commands together in the terminal. You can do so in a few different ways, for a few different reasons. This article will explain some of those to you, hopefully making your life easier.

There are a number of reasons why you’d want to string commands together. I find it easier to just run certain commands together. I also find it easier for some aliases. (Speaking of which, I really need to do an article about aliases!)

For example, you might want to run change to the Foo directory and then list the files inside it. Well, one way to write that command would be cd Foo && ls -la. In that case, you’d change the directory to Foo and then you’d list all the files within that directory. As I said, there are a number of ways to do this and a number of reasons why.

This article won’t be all that long – or even all that difficult. But, this is a pretty basic skill you’d want to have if you’re working in the terminal. It’s one of those tools you’ll (maybe) find yourself using more often once you’re used to it. I, for one, use it with some frequency. You can string commands together and then go make coffee!

String Commands Together:

Obviously, you’re going to need an open terminal. If you don’t know how to open the terminal, you can do so with your keyboard – just press CTRL + ALT + T and your default terminal should open.

With your terminal open, you’ll want one of the following operators:

; run the next command no matter what.
&& run the next command only if the first one succeeds.
|| run the next command only if the first one failed to run.

The ; operator can be used something like this:

Them the && operator can be used something like this:

Finally, the || operator can be used something like this:

You could string them along something like:

See? It’s not all that complicated. You can also swap the ; operator for a single ampersand. It’ll do the same thing, run the following command regardless of the results of the first. So, cd Downloads ; touch foo and cd Downloads & touch foo are functionally the same.

Closure:

Yup, another article – said and done. This one is, as promised, not all that difficult or even all that long. Still, I hope you’ve learned something and know now how to string commands together in the terminal. It’s a pretty useful skill to have. Feel free to leave a comment explaining how you already use these operators to string commands together.

Thanks for reading! If you want to help, or if the site has helped you, you can donate, register to help, write an article, or buy inexpensive hosting to start your own site. If you scroll down, you can sign up for the newsletter, vote for the article, and comment.

Subscribe To Our Newsletter
Get notified when new articles are published! It's free and I won't send you any spam.
Linux Tips
Creative Commons License
This work is licensed under a Creative Commons Attribution 4.0 International License.