We often want to find a file in Linux, but we don't know where it is. We can use the following commands to search:
01. Command Overview Find files in environment variables The which command is used to find and display the absolute path of a given command. The environment variable PATH stores the directories that need to be traversed when searching for commands. The which command searches for matching files in the directories set by the environment variable $PATH. In other words, by using the which command, you can see whether a system command exists and where the command is executed. 02. Command format 03. Common options Search for files in environment variables -a Search all contents instead of the first file -n <file name length> Specify the file name length. The specified length must be greater than or equal to the longest file name among all files. -p <filename length> is the same as the -n parameter, but the <filename length> here includes the file path. -w specifies the width of the output columns. -V Display version information. --version, -[vV] show version information and exit --help show this help message and exit --skip-dot skip directories in PATH that begin with a dot --skip-tilde skip directories in PATH that begin with a tilde --show-dot do not expand dot to current directory in output --show-tilde print tilde for HOME directory (non-root) --tty-only if not on a tty, stop processing options to the right --all, -a print all matches in PATH, not just the first --read-alias, -i read alias list from stdin --skip-alias ignore option --read-alias; do not read stdin --read-functions Read shell functions from stdin --skip-functions Ignore option --read-functions; do not read stdin 04. Reference examples 4.1 Display command path [deng@localhost test]$ which bash /usr/bin/bash Description: which searches for executable files based on the directories in the PATH variable configured by the user! Therefore, different PATH configuration contents may find different commands. 4.2 Display command aliases [deng@localhost test]$ which which alias which='alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde' /usr/bin/alias /usr/bin/which [deng@localhost test]$ 4.3 Ordinary users and root users have different search paths Common user search scenarios [deng@localhost test]$ which pwd /usr/bin/pwd Root user search scenario [root@localhost ~]# which pwd /bin/pwd [root@localhost ~]# 4.4 Cannot find built-in commands [root@localhost ~]# which type /usr/bin/which: no type in (/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin) [root@localhost ~]# This is the end of this article about the specific usage of the Linux which command. For more relevant Linux which content, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Echarts tutorial on how to implement tree charts
>>: Detailed explanation of common commands in MySQL 8.0+
1. Download the virtual machine Official download...
vue implements the drag and drop sorting function...
For security reasons, MySql-Server only allows th...
Preface During project development, due to differ...
If you want to change your host name, you can fol...
MySQL x64 does not provide an installer, does not...
The spread operator allows an expression to be ex...
I logged into the backend to check the solution t...
Preface Recently, during an interview, I was aske...
Table of contents 1. Use object to create an obje...
Problem description: Error message: Caused by: co...
This article shares with you a small Demo that ad...
The CSS3 category menu effects are as follows: HT...
Table of contents No slots Vue2.x Slots With slot...
1. What is Vue Vue is a progressive framework for...