Can I call Everything with a pattern as search parameter?
Assume I want to search for pattern "aaa bbb" then I need something like
D:\tools\Everything\everything.exe -search "aaa bbb"
But this doesn't work.
Is it possible otherwise?
Thank you
Peter
Call Everything with search pattern as parameter?
Re: Call Everything with search pattern as parameter?
Please escape double quotes with triple double quotes:
D:\tools\Everything\everything.exe -search """"aaa bbb""""
Note: you will need to use an additional double quote to escape the space.
D:\tools\Everything\everything.exe -search """"aaa bbb""""
Note: you will need to use an additional double quote to escape the space.
Re: Call Everything with search pattern as parameter?
Or try something like this
I know it looks odd, but it should work.
Code: Select all
C:\Program Files\Everything\Everything.exe -search "aaa "bbb
-
- Posts: 35
- Joined: Sun Mar 08, 2015 11:05 pm
Re: Call Everything with search pattern as parameter?
How do I pass a quoted search string to Everything?
As expected, everything -s "expense claims\" gives me:
This is what I want to achieve (showing a hand coded example):
I had hoped that triple quotes would do the trick but everything -s """expense claims\""" gives me an Unable to open file list: error.
As expected, everything -s "expense claims\" gives me:
This is what I want to achieve (showing a hand coded example):
I had hoped that triple quotes would do the trick but everything -s """expense claims\""" gives me an Unable to open file list: error.
-
- Posts: 35
- Joined: Sun Mar 08, 2015 11:05 pm
Re: Call Everything with search pattern as parameter?
Oops. Already answered here.