We often find a file in Linux, but do not know where to put it, you can use some of the following commands to search:
Which view the location of the executable file.
Whereis View the location of the file.
Locate to view the file location with the database.
Find actual search hard disk query file name.
1.which
The purpose of the which command is to search for the location of a system command in the path specified by the path variable, and return the first search result. That is, with the which command, you can see whether a system command exists, and the command that executes exactly which location.
1.1. Command format:
which executable file name
1.2. Command function:
The which instruction searches for the location of a system command in the path specified by the path variable, and returns the first search result.
1.3. Command parameters:
-n Specifies the length of the file name, which must be greater than or equal to the longest file name in all files.
-P is the same as the-n parameter, but the path to the file is included here.
-W Specifies the width of the field at the output.
-V Display version information
1.4. Usage examples:
Example 1: Finding files, displaying command paths
[[email protected] ~]$ which pwd/bin/pwd[[email protected] ~]$ which passwd/usr/bin/passwd[[email protected] ~]$ which JAV A/home/bigdata/software/java/bin/java
Which is to search for a running file based on the directory within the PATH variable configured by the user! Therefore, the different PATH configuration content found the command of course not the same!
Example 2: Use which to find which
[email protected] ~]$ which Whichalias which= ' Alias | /usr/bin/which--tty-only--read-alias--show-dot--show-tilde ' /usr/bin/which
Description
There will be two which, one of which is alias. This is called the "command alias", meaning that the input which will wait for the next sequence of commands!
Example 3: Find the CD command
[email protected] ~]$ which Cd/usr/bin/which:no CD in (/home/bigdata/software/java/bin:/usr/lib64/qt-3.3/bin:/home/ Bigdata/software/spark-1.5.2.2-bin-2.4.0.7/bin:/home/bigdata/software/r-3.2.1/bin:/home/bigdata/software/ Anaconda/bin:/home/bigdata/software/java/bin:/home/bigdata/software/hadoop/bin:/home/bigdata/software/hive/bin :/home/bigdata/software/sqoop/bin:/home/bigdata/software/hbase/bin:/home/bigdata/software/zeppelin/bin:/usr/ local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/bigdata/software/hadoop/bin:/home/bigdata/ Software/hive/bin:/home/bigdata/software/sqoop/bin:/home/finance/bin)
Description
CD is a common command can not find Ah! Why is it? This is because the CD is a command built in bash! But which default is to find the PATH within the standard directory, so of course, must not find!
A detailed look at the search command under Linux (which)