We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$ tree -F . ├── a/ │ └── a └── b -> a/
In directory "b":
$ fd -a # or fd -a . . /path/a /path/a/a $ fd . $PWD /path/a /path/a/a
(For fd . $PWD, with or without option -L?) The result should be /path/b and /path/b/a unless resolving is requested by the user.
fd . $PWD
-L
/path/b
/path/b/a
The text was updated successfully, but these errors were encountered:
It is impossible to know whether the current directory . is a symlink. So we cannot fix fd -a.
.
fd -a
And for fd "" "$PWD", we need a way to run shell scripts on both Windows and Linux.
fd "" "$PWD"
Sorry, something went wrong.
Use a uniform output format for searching ../
e649c8f
closes #107, fixes #82 by the way
Successfully merging a pull request may close this issue.
In directory "b":
(For
fd . $PWD
, with or without option-L
?) The result should be/path/b
and/path/b/a
unless resolving is requested by the user.The text was updated successfully, but these errors were encountered: