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
--exec
When use the --exec command on windows, the {} isn't properly replaced for files start with rvbt etc under folders. The expected result is:
{}
rvbt
folder\thread.txt folder\var.txt
while the actaul reslt is:
folder^thread.txt folder^Kar.txt
where the ^t and ^K are control keycodes.
^t
^K
The text was updated successfully, but these errors were encountered:
This isn't the same thing as #310, is it? If it is, try using e.g. fd -x <command> "{}" as mentioned here.
fd -x <command> "{}"
Sorry, something went wrong.
@evanjs Thank you for your comment. After tring the solution provided in #310, this problem is resovled. It is possibly the same problem as #310 .
@TroyDanielFZ Thank you for reporting this, and thanks for resolving it @evanjs.
It feels like something that should be documented. Maybe we could modify the help text on Windows to add a remark about needing to quote {}?
By the way: note that you can always skip a trailing {} argument. fd … -x cmd is equivalent to fd … -x cmd "{}".
fd … -x cmd
fd … -x cmd "{}"
No branches or pull requests
When use the
--exec
command on windows, the{}
isn't properly replaced for files start withrvbt
etc under folders.The expected result is:
while the actaul reslt is:
where the
^t
and^K
are control keycodes.The text was updated successfully, but these errors were encountered: