fd doesn't return anything

Created on 8 Jun 2018  路  2Comments  路  Source: sharkdp/fd

I dunno, just seems to come up empty every time.

$ ls
audio  bin  books  code  Desktop  docs  images  man  msc  photos  resume  videos  vm
$ fd -V
fd 7.0.0
$ fd -h
fd 7.0.0

USAGE:
    fd [FLAGS/OPTIONS] [<pattern>] [<path>...]

FLAGS:
    -H, --hidden            Search hidden files and directories
    ...
$ fd
$ fd docs
$ fd resume
$ touch newfile
$ ls newfile
newfile
$ fd newf
$ fd newfile

Most helpful comment

fd will not show files which are ignored by git. Please check if you have any .gitignore files that could cause these files not to show up.

You can disable this feature by using --no-ignore or -I.

All 2 comments

fd will not show files which are ignored by git. Please check if you have any .gitignore files that could cause these files not to show up.

You can disable this feature by using --no-ignore or -I.

Without checking, I'm sure that's it. I have a wildcard .gitignore in my home folder.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

codyro picture codyro  路  4Comments

blueray453 picture blueray453  路  4Comments

mathomp4 picture mathomp4  路  4Comments

Dietr1ch picture Dietr1ch  路  3Comments

sharkdp picture sharkdp  路  4Comments