sharkdp/fd

List all directories in cwd, including '.' and '..'

gnmdrive opened this issue · 2 comments

fd 8.3.1

Hello, is it possible to list all directories including . and ..?
I am currently using this command

fd . -H -t d

but it doesn't return what I'm looking for

fd won't print those entries, but you can always fake it with

$ echo . && echo .. && fd . -H -td

Thank you, this helped me