search
  • Sign In
  • Sign Up
Password reset successful

Follow the proiects vou are interested in andi aet the latestnews about them taster

Programming Dictionary

Online technical manual for service programmers
Popular searches:
Dictionary homepage Server Linux Linux which command
Linux which command Detailed instructions for use

Linux which command

Chinese translation Recent Updates: 2018-06-13 10:10:50

which

English [wɪtʃ] US [hwɪtʃ,wɪtʃ]

pron. Which; which one; which ones; that, refers to the things mentioned earlier

adj.Which one; which ones

Linux which command syntax

Function: which command is used to find files. The which command will search for files that meet the conditions in the directory set by the environment variable $PATH.

Syntax: which [file...]

Linux which command example

Use the command "which" to view the absolute path of the command "bash", enter the following command:

$ which bash

After the above command is executed, the output information is as follows:

/bin/bash                   #bash可执行程序的绝对路径
Linux which command