Skip to content

Instantly share code, notes, and snippets.

@malwaremily
Last active April 29, 2018 20:36
Show Gist options
  • Save malwaremily/049ee660a8f2a111adf7685efeaec9c4 to your computer and use it in GitHub Desktop.
Save malwaremily/049ee660a8f2a111adf7685efeaec9c4 to your computer and use it in GitHub Desktop.
Google Operators Cheatsheet
a -b search for pages containing 'a' do not include pages with the term 'b'
a ~b search for 'a' and 'b' as well as any words synonymous to 'b' or any words like 'b' but with alternative endings
a OR b search for pages that contain 'a', 'b', or both terms
a|b search for pages that contain 'a', 'b', or both terms
a * b c search for pages that contains the terms 'a' and 'b c', '*' represents any word or words and allows for any term to be matched here
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment