Hi and sorry to bother you again. I want to search for pathnames longer then 254 chars, but i'm not able to escape the greather than character in command line as it is documented here: https://www.voidtools.com/support/every ... ace/#notes
Here is the command i want to execute:
es.exe path:len:^>254 /a-d -path-column -hide-empty-search-results -sort path -export-txt result.txt
es.exe escape greather than char
Re: es.exe escape greather than char
Looks like, from a command line, quotes are sufficient, .
es path:len:">260"
Re: es.exe escape greather than char
So, you are using Everything 1.5?
There is an issue with parsing that command in Everything 1.5. Things go wrong with expanding /a-d.
For now, to work around that, you can try the following search:
(the -hide-empty-search-results is not needed as you already specified a search)
There is an issue with parsing that command in Everything 1.5. Things go wrong with expanding /a-d.
For now, to work around that, you can try the following search:
Code: Select all
es.exe file:path:len:^>254 -path-column -sort path
Re: es.exe escape greather than char
Hi, thanks for your answer. I didn't use 1.5, I stil use the latest released version. Also thank you for your hint about: -hide-empty-search-results.NotNull wrote: ↑Tue Jan 11, 2022 5:19 pm So, you are using Everything 1.5?
There is an issue with parsing that command in Everything 1.5. Things go wrong with expanding /a-d.
For now, to work around that, you can try the following search:(the -hide-empty-search-results is not needed as you already specified a search)Code: Select all
es.exe file:path:len:^>254 -path-column -sort path