Skip to content

emnoshpro/search

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

search

code base search using grep and find

-E, --extended-regexp
       Interpret PATTERNS as extended regular expressions (EREs, see below).

-F, --fixed-strings
       Interpret PATTERNS as fixed strings, not regular expressions.

examples: `basename $0` 'isLoaded' '*.[php]'                    # fixed string search -w
          `basename $0` '(account_entity|isLoaded)' '*.[php]'   # regular expression search -E
          `basename $0` '-F' 'isLoaded(' '*.[php]'              # force fixed string search
          `basename $0` '-L -F' 'isLoaded(' '*.[php]'           # search for files not having the search criteria"

Releases

No releases published

Packages

No packages published

Languages