find 命令找不到我确实存在的文件

Cod*_*han 16 linux command-line find

find遇到了一个奇怪的情况,命令找不到某些文件但可以找到另一个文件,并且它们都存在于本地路径中。

原始代码如截图:

屏幕.

文件在那里:

$ ls -lh ~/.config/fish/functions/
total 92K
-rw-rw-r-- 1 echecod echecod 4.2K Dec 20 16:42 __async_prompt.fish
-rw-rw-r-- 1 echecod echecod 3.0K Dec 20 16:42 done.fish
-rw-rw-r-- 1 echecod echecod  597 Dec 20 16:42 humanize_duration.fish
-rwxrwxr-x 1 echecod echecod 5.2K Dec 20 16:42 __informative_git_prompt.fish*
-rwxrwxr-x 1 echecod echecod 1.4K Dec 20 16:42 prompt_pwd.fish*
-rw-rw-r-- 1 echecod echecod  61K Feb 20 11:38 z.lua
Run Code Online (Sandbox Code Playgroud)

但是他们找不到:

$ find ~/.config -name z.lua
$ find ~/.config -name prompt_pwd.fish
Run Code Online (Sandbox Code Playgroud)

上层目录和其中的文件:

$ ls -ld ~/.config/fish/
drwx------ 2 echecod echecod 4096 Feb 20 13:35 /home/echecod/.config/fish/

$ ls -lh ~/.config/fish/
total 24K
lrwxrwxrwx 1 echecod echecod   46 Dec 20 16:45 config.fish -> ../../Dotfiles.d/fish/.config/fish/config.fish*
-rw-r--r-- 1 echecod echecod 1.3K Dec  7 11:00 fishd.DUA-001
-rw-r--r-- 1 echecod echecod  14K Feb 19 18:21 fishd.DUA-BuildServer000
-rw-r--r-- 1 echecod echecod 2.7K Feb 19 10:47 fish_variables
lrwxrwxrwx 1 echecod echecod   44 Dec 20 16:45 functions -> ../../Dotfiles.d/fish/.config/fish/functions/
Run Code Online (Sandbox Code Playgroud)

这些可以找到:

$ find ~/.config -name config.fish
/home/echecod/.config/fish/config.fish
$ find ~/.config -name fish_variables
/home/echecod/.config/fish/fish_variables
$ find ~/.config -name functions
/home/echecod/.config/fish/functions
Run Code Online (Sandbox Code Playgroud)

以防万一(因为functions -> ../../Dotfiles.d/fish/.config/fish/functions/):

$ ls -lh ~/Dotfiles.d/fish/.config/fish/functions/
total 92K
-rw-rw-r-- 1 echecod echecod 4.2K Dec 20 16:42 __async_prompt.fish
-rw-rw-r-- 1 echecod echecod 3.0K Dec 20 16:42 done.fish
-rw-rw-r-- 1 echecod echecod  597 Dec 20 16:42 humanize_duration.fish
-rwxrwxr-x 1 echecod echecod 5.2K Dec 20 16:42 __informative_git_prompt.fish*
-rwxrwxr-x 1 echecod echecod 1.4K Dec 20 16:42 prompt_pwd.fish*
-rw-rw-r-- 1 echecod echecod  61K Feb 20 11:38 z.lua
Run Code Online (Sandbox Code Playgroud)

我的有什么问题find

供参考:

  • Ubuntu 16.04.3 LTS amd64
  • 查找(GNU findutils)4.7.0-git, /usr/bin/find

Kam*_*ski 26

~/.config/fish/functions是一个符号链接。因此,它是关于[强调我的]:

-P
永远不要遵循符号链接。这是默认行为。当find检查或打印文件信息时,该文件是一个符号链接,所使用的信息应取自符号链接本身的属性。

-L
遵循符号链接。当find检查或打印有关文件的信息时,所使用的信息应取自链接指向的文件的属性,而不是取自链接本身[...]。如果-L有效并且find在搜索过程中发现到子目录的符号链接,则将搜索符号链接指向的子目录

(来源)

使用find -L. 这是一个选项,而不是操作数;它应该出现在路径之前。