这个行为是什么意思。我输入:
whereis Dotfiles
它在换行符处返回
Dotfiles:
我按以下顺序逐字运行此文件(之前不存在这样的目录“Dotfiles”:
$git clone git://github.com/haridas/Dotfiles.git
$cd Dotfiles
$pwd
<path to gitproject>/Dotfiles
$git submodule init
$git submodule update
--注意,是的,我确实在as /Dotfiles运行,因为我复制/粘贴的时候没有注意到。我是个noob。
2条答案
按热度按时间wpcxdonn1#
它只是简单地声明它找不到点文件。whereis命令用于查找指定命令或文件的源代码、二进制文件和手册部分。什么是点文件?目录、符号链接、文件?
k2fxgqgv2#
在bash中,
whereis
命令用于“定位命令的二进制文件、源文件和手册页文件”(直接从whereis
的手册页中找到),从您在评论中发布的教程中可以看出Dotfiles
是一个目录。您可以将
locate
命令与grep
结合使用来查找Dotfiles
目录:或者假设
Dotfiles
目录位于主目录中,您可以使用以下find
命令:find ~ -iname Dotfiles -type d