linux 文件命令在何处对文件发出换行符:

osh3o9ms  于 2023-01-29  发布在  Linux
关注(0)|答案(2)|浏览(100)

这个行为是什么意思。我输入:

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。

wpcxdonn

wpcxdonn1#

它只是简单地声明它找不到点文件。whereis命令用于查找指定命令或文件的源代码、二进制文件和手册部分。什么是点文件?目录、符号链接、文件?

k2fxgqgv

k2fxgqgv2#

在bash中,whereis命令用于“定位命令的二进制文件、源文件和手册页文件”(直接从whereis的手册页中找到),从您在评论中发布的教程中可以看出Dotfiles是一个目录。
您可以将locate命令与grep结合使用来查找Dotfiles目录:

locate Dotfiles | grep "/Dotfiles\$"

或者假设Dotfiles目录位于主目录中,您可以使用以下find命令:
find ~ -iname Dotfiles -type d

相关问题