Creating a search from a file

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
Kpiwara
Posts: 2
Joined: Sun Jun 23, 2024 4:40 am

Creating a search from a file

Post by Kpiwara »

I have a big text file and I need a search for all lines with an OR so I can copy those results to another folder.

Something like this:
File.txt:
line1
line2
line3
line4
lineN

becoming a search for:

line1 | line2 | line3 | line4 | ... lineN

Is there an option ?
Can it be done with the CLI ? A Batch on DOS ?

Thanks !
void
Developer
Posts: 16428
Joined: Fri Oct 16, 2009 11:31 pm

Re: Creating a search from a file

Post by void »

For Everything 1.4:
  • Copy and paste the following into your Everything search box:
    /paste_new_line_op=1
  • Press ENTER in your Everything search box.
  • If successful, paste_new_line_op=1 is shown in the status bar for a few seconds.
  • Please make sure there's no empty lines in your text file.
  • Copy the text file contents
  • Paste them in your Everything search box.
    You should see the following in your search box:
    <line1> | <line2> | <line3> | <line4> | ... <lineN>


For Everything 1.5:
  • Copy the text file contents.
  • Paste them in your Everything search box.
    You should see the following in your search box:
    <line1> | <line2> | <line3> | <line4> | ... <lineN>
Kpiwara
Posts: 2
Joined: Sun Jun 23, 2024 4:40 am

Re: Creating a search from a file

Post by Kpiwara »

Thank you ! It worked !
void wrote: Sun Jun 23, 2024 4:54 am For Everything 1.4:
  • Copy and paste the following into your Everything search box:
    /paste_new_line_op=1
  • Press ENTER in your Everything search box.
  • If successful, paste_new_line_op=1 is shown in the status bar for a few seconds.
  • Please make sure there's no empty lines in your text file.
  • Copy the text file contents
  • Paste them in your Everything search box.
    You should see the following in your search box:
    <line1> | <line2> | <line3> | <line4> | ... <lineN>


For Everything 1.5:
  • Copy the text file contents.
  • Paste them in your Everything search box.
    You should see the following in your search box:
    <line1> | <line2> | <line3> | <line4> | ... <lineN>
Post Reply