Search found 3 matches

by iAccidentally
31 Jan 2012 13:36
Forum: DOS Batch Forum
Topic: Script to search google - problem with multiple quotations
Replies: 6
Views: 17325

Re: Script to search google - problem with multiple quotatio

Well you were putting in a Space in that way so anything is possible. You could substitute the colon with a %3A I believe as well. I have always felt it was best coding practice to always use the EMPTY quotes when using the start command and I always put paths and file names in quotes regardless if...
by iAccidentally
31 Jan 2012 13:17
Forum: DOS Batch Forum
Topic: Script to search google - problem with multiple quotations
Replies: 6
Views: 17325

Re: Script to search google - problem with multiple quotatio

Thank you both very much for the help! Works perfectly now I've simplified it to the following and it still works: start chrome.exe http://www.google.com/search?q=intext:%%22hello+there%%22+inurl:%%22some+other+term%%22 Good call with using %22 in the url, didn't realize that I could put quotes in t...
by iAccidentally
30 Jan 2012 22:03
Forum: DOS Batch Forum
Topic: Script to search google - problem with multiple quotations
Replies: 6
Views: 17325

Script to search google - problem with multiple quotations

Hello, I have a fairly simple question to ask but I haven't been able to figure this problem out. I'm working on a script that calls up a browser and performs advanced google searches which have multiple double quotes in them. The way I'm doing this is by using google's search syntax directly in the...