Krugle Search Qualifier Reference
Use these command line qualifiers to narrow/refine search results
- project
btree project:alpha
Finds files containing the term "btree" in the alpha project- lang
btree lang:java
Finds files containing the term "btree" that were written in the java programming language- filename
btree filename:"*.h"
Finds files with the .h extension that contain the term btreejaxb filename:"pom.xml"
Finds files named pom.xml that contain the term jaxb- site
btree site:src/text/resources
Finds files containing the term "btree" and that have src/text/resources in their file path- comment
comment:"btree"
Finds files containing the term "btree" in any comments section of code files- classdef
classdef:"btree"
Finds files containing a class definition that contains the term "btree" in the class name- functiondef
functiondef:"btree"
Finds files containing a function definition that contains the term "btree" in the class name- funtioncall
functioncall:"btree"
Finds files containing a function, subroutine or method call that contains the term "btree" in the called name- "…"
"Hello, world!\n"
Finds files that contain the exact contents of the string "Hello, world!\n"; note that single quotes('), triple single quotes (''') and triple double quotes (""") can also be used to define the beginning and end of a string- -(minus)
"text/xml" -"utf-8"
Finds files that contain the term "text/xml" , but that do not contain "utf-8"- combine
"alpha test" btree filename:"*.pdf" site: src/text
Combines multiple qualifiers and search terms in a single query. Finds files containing either the term "alpha test" or the term "btree" in files of filetype "pdf" that have src/text in their filepath