Find 查找未在 ls 中显示的文件

Find 查找未在 ls 中显示的文件

我遇到过下面的情况。

find找到一个特定文件:

$> find ./ -name "16_-_*.mp3"

 ... # other matches
./Music.mp3/Let's Wrestle/In The Court Of The Wrestling Let's/16_-_In The Court Of The Wrestling Let's.mp3
 ... # other matches

但它没有出现在ls

ls -a ./Music.mp3/Let\'s\ Wrestle/Let\'s\ Wrestle/
.  ..  01_Rain Ruins Revolution.mp3  02_I Am Fond of You.mp3  03_Codeine and Marshmallows.mp3  08_David You Know.mp3  cover.jpg

我该如何修复此问题以便让文件回到其原来的位置?

答案1

您的find命令显示以下文件:

./Music.mp3/Let's Wrestle/In The Court Of The Wrestling Let's/

您的ls命令正在列出以下文件:

./Music.mp3/Let's Wrestle/

基本上你的(1)目录太高了ls

相关内容