How the which Command works on Linux
📣 Sponsor
When we are running servers, or even our local computer, different applications may install the same piece of software multiple times. For example, it is not uncommon to accidentally have two versions of Node.JS installed on a server or computer.
In the example where we have multiple versions of Node.JS, it can be confusing which versions are running, or which will be used when we run the node
command in a terminal window.
If we want to know the origins of a command, we can use the which
command to find where it is installed. The which
command has the following syntax, [x]
, [y]
and [z]
are what we want to check:
which [x] [y] [z]
How to use the which command on Linux or Mac
Lets use our Node.JS example to start with. If we want to know which Node.JS is being used, we can simply type the following:
which node
This will then return something like this:
/root/.nvm/versions/node/v14.15.1/bin/node
Checking multiple commands with the which command on Linux or Mac
If we want to check the location of multiple commands on Linux or Mac, we can use the usual which
syntax, but just separate each item we want to check with a space.
For example, the below text checks both node, and postfix:
which node postfix
And for me, it returns this:
/root/.nvm/versions/node/v14.15.1/bin/node
/usr/sbin/postfix
More Tips and Tricks for Linux
- How the cd command works in Linux
- Find all files containing a string or text on Linux and Mac
- How the touch Command works on Linux
- Reference: Non Printable Characters List
- How the chmod command works on Linux
- How to make a Symbolic Link on Linux
- Delete .DS_Store recursively from all directories and sub-directories
- Speed up your Website by Converting your Images to WebP from Terminal
- How the mkdir command works on Linux
- How the alias Command works on Linux