Difference between revisions of "Google"

From Bashlinux
Jump to: navigation, search
(Google)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
== How to do a search for a specific phrase ==
+
=== How to do a search for a specific phrase ===
 
Just enclose the phrase in quotes
 
Just enclose the phrase in quotes
 
<pre><nowiki>
 
 
"I need to found this string" +"and this too" +"not necessary together"
 
"I need to found this string" +"and this too" +"not necessary together"
</nowiki></pre>
 
   
 
=== How to do a search for a book ===
 
The following string will get rid the regular web pages <code>htm/html</code> bu using <tt>inurl</tt> in the search string
 
-inurl:htm -inurl:html intitle:"index of" +("/ebooks"|"/book") +(chm|pdf|zip)
   
== How to do a search for a book ==
+
=== How to do a search for specific file type ===
The following will string get rid the regular web pages ''htm/html'' using `inurl` in the search string
 
 
<pre><nowiki>
 
-inurl:htm -inurl:html intitle:”index of” +(/ebooks”|/book”) +(chm|pdf|zip)
 
</nowiki></pre>
 
 
 
== How to do a search for specific file type ==
 
 
The colon does the trick, this example will look for pdf files on a directory
 
The colon does the trick, this example will look for pdf files on a directory
 
<pre><nowiki>
 
 
"possible name" :pdf
 
"possible name" :pdf
</nowiki></pre>
 

Revision as of 06:00, 12 June 2015

How to do a search for a specific phrase

Just enclose the phrase in quotes

"I need to found this string" +"and this too" +"not necessary together"

How to do a search for a book

The following string will get rid the regular web pages htm/html bu using inurl in the search string

-inurl:htm -inurl:html intitle:"index of" +("/ebooks"|"/book") +(chm|pdf|zip)

How to do a search for specific file type

The colon does the trick, this example will look for pdf files on a directory

"possible name" :pdf