Replies: 2 comments
-
I think probably what is happening is that your shell is expanding "t5." to "tst5.ss" before passing it to tfd. and then the only file that matches is the Try running |
Beta Was this translation helpful? Give feedback.
0 replies
-
hum indeed it do work with the ' ' . But is there a way to fix as a symlink or so to not have to add extra colon .. ? thanks again |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi
I would like to know why the main folder where we do the command is not included when we search for a file ?
from home folder make 1 file: tst5.ss And do: mkdir tst2 , mkdir tst4 , inside these folder do file : xxxgstt5.jpg and sdft5.jpg
then in home folder do :
fdfind -g *t5.jpg
# it will list file in those 2 sub folder = 2 file foundfdfind -g *gst*.jpg
# it will list file in those 2 sub folder = 2 file foundBUT
fdfind -g *t5.*
# 1 file foundwill return only the .ss and not list the .jpg of the sub folder. Is this a bug ?
The easy equivalent is :
dir *t5.* /s
# that will list : .ss and the 2 jpg file in the 2 sub folder. so a result of 3 file found.Beta Was this translation helpful? Give feedback.
All reactions