https://www.voidtools.com/support/everything/searching/

打开多个everything进程

https://www.voidtools.com/support/everything/multiple_instances/

Multiple Instances

By default there is only one instance of Everything.

When you run Everything.exe it will check for an existing instance. If an existing instance is found the command line options are sent and processed by the existing instance. If no existing instance is found a new one is created.

To run multiple instances of Everything use Named instances.

Named instances

By default Everything uses the unnamed instance.

Assign unique names to Everything instances to use multiple instances.

There can only be one instance for each unique name.

To assign a name to the instance:

Use the -instance command line option to specify the instance name when starting Everything.exe.

For example:

Everything.exe -instance "ETP Server"

Named instances use unique settings and data.

For example, the named instanced "ETP Server" will use Everything-ETP SERVER.ini as the settings file.

The name of the instance is located in the Everything search window
caption and in the tooltip when hovering over the tray icon with the
cursor.

在指定文件夹中进行搜索

比如想要在E:\GitHub\KerryJiang\SuperSocket-dotnetcore文件夹中搜索log4net

log4net E:\GitHub\KerryJiang\SuperSocket-dotnetcore

如果路径中带有空格的话,需要加双引号

SE_Point_File_mapping (1).xls "D:\ChuckLu\Installation packages"

右键菜单中增加everything

忽略配置

搜到不到sql文件或者vsdx文件

确保搜索的是everything,而不是document或audio之类的

仅搜索文件夹名字

folder:"red gate"

end with

endwith:<text> Filenames (including extension) ending with text.

通过正则来实现start with 和end with的组合

regex:^al.exe$

folder:regex:^powershell$

随机推荐

  1. Json——转义符

    C#后台直接输出Json字符串需要反斜杠“\” context.Response.Write("[{\"Name\": \"wqx\", \" ...

  2. JavaScript定时器及其他

    By Abyssly Jun 20 2014 Updated:Jun 20 2014 平时工作中不可避免地要嵌套网页,对JavaScript的深入了解还是很有必要滴.而JavaScript中一个容易让 ...

  3. Mysql 之show status数据详解

    状态名 作用域 详细解释 Aborted_clients Global 由于客户端没有正确关闭连接导致客户端终止而中断的连接数 Aborted_connects Global 试图连接到MySQL服务 ...

  4. 一个数据去重sql

    参考: https://www.jb51.net/article/129656.htm DELETE testcaseFROM testcase,  (  SELECT  max(id) id,  a ...

  5. linux中集群的免秘钥SSH直接登录

    这里以三台mysql的主从服务器为例:manage.master.slave1.slave2   给4个机器生成秘钥文件 以manage为例,执行命令,生成空字符串的秘钥(后面要使用公钥),命令是: ...

  6. PAT_A1133#Splitting A Linked List

    Source: PAT A1133 Splitting A Linked List (25 分) Description: Given a singly linked list, you are su ...

  7. Python学习【第6篇】:Python之常用模块1

    常用模块一. collocations 模块 时间模块 random模块 os模块 sys模块 序列化模块 re模块 常用模块二:这些模块和面向对象有关 hashlib模块 configparse模块 ...

  8. ORM 操作

    官方文档 一.操作 基本操作 # 增 models.Tb1.objects.create(c1='xx', c2='oo') # 增加一条数据,可以接受字典类型数据 **kwargs obj = mo ...

  9. Problem 28

    Problem 28 https://projecteuler.net/problem=28 Starting with the number 1 and moving to the right in ...

  10. 第十三节:pandas之groupby()分组

    1.Series()对象分组 1.1.单级索引 1.2.多级索引 2.DataFrame()对象分组 3.获取一个分组,遍历分组,filter过滤.