这种行为意味着什么。我输入:
whereis Dotfiles
它在换行符上返回
Dotfiles:
我按此顺序运行这个单词(没有这样的目录" Dotfiles"之前存在:
$ git clone git://github.com/haridas/Dotfiles.git
$ cd Dotfiles
$ PWD /点文件
$ git submodule init $ git submodule update
- 注意,是的,我确实在as / Dotfiles上运行,因为我在复制/粘贴时没有注意到它。我是个菜鸟。
答案 0 :(得分:0)
它只是说它无法找到Dotfiles。 whereis命令用于查找指定命令或文件的源,二进制和手册部分。什么是Dotfiles?目录,符号链接,文件?
答案 1 :(得分:0)
在bash中,whereis
命令用于“查找命令的二进制文件,源文件和手册页文件”(直接来自whereis
的手册页)。从您在评论中发布的教程中可以看出Dotfiles
是一个目录。
您可以将locate
命令与grep
结合使用来查找Dotfiles
目录:
locate Dotfiles | grep "/Dotfiles\$"
或者假设Dotfiles
目录位于主目录中的某个位置,您可以使用以下find
命令:
find ~ -iname Dotfiles -type d