We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
which
我们经常在 linux 要查找某个文件,但不知道放在哪里了,可以使用下面的一些命令来搜索:
which 查看可执行文件的位置。 whereis 查看文件的位置。 locate 配合数据库查看文件位置。 find 实际搜寻硬盘查询文件名称。
whereis
locate
find
which 命令的作用是,在 PATH 变量指定的路径中,搜索某个系统命令的位置,并且返回第一个搜索结果。也就是说,使用 which 命令,就可以看到某个系统命令是否存在,以及执行的到底是哪一个位置的命令。
PATH
which 可执行文件
which 指令会在 PATH 变量指定的路径中,搜索某个系统命令的位置,并且返回第一个搜索结果。
获取安装的第三方全局命令位置
which node
which cd: cd: shell built-in command
which cd
cd: shell built-in command
The text was updated successfully, but these errors were encountered:
No branches or pull requests
day 15 - linux 命令 :
which
我们经常在 linux 要查找某个文件,但不知道放在哪里了,可以使用下面的一些命令来搜索:
which
查看可执行文件的位置。whereis
查看文件的位置。locate
配合数据库查看文件位置。find
实际搜寻硬盘查询文件名称。which
命令的作用是,在PATH
变量指定的路径中,搜索某个系统命令的位置,并且返回第一个搜索结果。也就是说,使用which
命令,就可以看到某个系统命令是否存在,以及执行的到底是哪一个位置的命令。语法
which
指令会在PATH
变量指定的路径中,搜索某个系统命令的位置,并且返回第一个搜索结果。实例
获取安装的第三方全局命令位置
which node
which cd
:cd: shell built-in command
The text was updated successfully, but these errors were encountered: