Hi,
is there any possibility to copy search results ( found by the command line interface) to another location?
maybe the -copyto option?
example
ES xx*.pdf
copy all files to c:\test
I want to implement this in a batch file , to automate searching for specific files which are existing in different folders and combine them in one "search" folder.
The batch file may have up to 300 command lines, so there's a lot of files to be copied.
Any suggestion will be highly appreciated
copy search results using command line
Re: copy search results using command line
A simple output redirection does the job.
Re: copy search results using command line
Output to a file:
Output to the (Windows) clipboard:
Piped to the ShowTx utility, SF.bat:
Code: Select all
ES xx*.pdf > C:\TMP\pdf_files.TXT
Code: Select all
ES xx*.pdf | clip.exe