How to export search result by command line automatically?

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
jacky
Posts: 1
Joined: Fri Nov 28, 2014 6:07 pm

How to export search result by command line automatically?

Post by jacky »

Hello,
I prefer to use command line to search result .
For example,
1) win+R and input "cmd" to launch Windows command
2) input "C:\Program Files\Everything\Everything.exe" -s "c: dc:aug *.txt>"
3) then "everything application" is appeared and show the search result( all the .txt file which is created in Auguest in Driver C)
4) then If I want to save search result, I have to click "menu - file - export" and input filelist name manually.

the question is step4:
have any method by using "option/parameter" in command line to export search result automatically?
(instead of clicking menu-file-export)

thanks.
therube
Posts: 4599
Joined: Thu Sep 03, 2009 6:48 pm

Re: How to export search result by command line automaticall

Post by therube »

Download Everything Command-line Interface, es.zip

Code: Select all

-r Search the database using a basic POSIX regular expression.
-i Does a case sensitive search.
-w Does a whole word search.
-p Does a full path search.
-h --help Display this help.
-n <num> Limit the amount of results shown to <num>.
-s Sort by full path.
Output can be redirected to a file or wherever.

Code: Select all

C:\TMP\>  es.exe  shadowfax  >  shadow.txt

C:\TMP\>  es.exe  shadowfax  |  clip.exe
Post Reply