everything的使用
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$
随机推荐
- python gdal 修改shp文件的属性值
driver = ogr.GetDriverByName('ESRI Shapefile')datasource = driver.Open(shpFileName, 1)layer = dataso ...
- Android 微信分享不出去?四步搞定!
现在做的项目中集成了友盟分享,产品要求集成微信.朋友圈.QQ.QQ空间.短信这几个分享平台.按照友盟的文档集成一切都很顺利,集成成功以后测试QQ.QQ空间.短信都没有问题,唯独微信和朋友圈一直分享不出 ...
- Raspberry Pi开发之旅-空气温湿度检测(DHT11)
一.首先,简单介绍下DHT11: DHT11是一个温湿度传感器,分为3个接口,分别为:VCC, DATA, GND 引脚号 名称 类型 说明 1 VCC 电源 +级,输入3V-5.5V 2 DATA ...
- html5——DOM扩展
元素获取 1.document.getElementsByClassName ('class') 通过类名获取元素,以类数组形式存在. 2.document.querySelector(‘div’) ...
- JS——回调函数
1.回调函数作为参数的形式进行使用 2.回调函数一定程度上达到了解耦效果(模块化.功能化) <script> console.log(op(1, 2, add)); console.log ...
- animation与transition区别
transition: 过渡属性 过渡所需要时间 过渡动画函数 过渡延迟时间:默认值分别为:all 0 ease 0 1.局限性: 1)只能设置一个属性 2)需要伪类/事件触发才执行 3)只能设置动画 ...
- JAR包中读取资源文件
我们常常在代码中读取一些资源文件(比如图片,音乐,文本等等).在单独运行的时候这些简单的处理当然不会有问题.但是,如果我们把代码打成一个jar包以后,即使将资源文件一并打包,这些东西也找不出来了.看看 ...
- S-HR之OSF
1):getWorkDayCount ->ArrayList data = (ArrayList) com.kingdee.shr.rpts.ctrlreport.osf.OSFExecutor ...
- 点击 table 单元格 取值
function Test() { var rows = document.getElementById("tbDetail").rows; if (rows.length > ...
- C# Thu Mar 1 00:00:00 UTC+0800 2012 如何转换为2012-03-01
string s = "Thu Mar 1 00:00:00 UTC+0800 2012"; DateTime dt = DateTime.ParseExact(s, " ...