-
You can google your parameters with a batch file like this:
start https://www.google.com/search?q=%1%%20%2%%20%3%%20%4%%20%5%%20%6%%20%7You need a double % because a batch file would interpret %20 as your second parameter plus 0. The double % tells it you want %20 which is the URL code for a space.
-
is this the same on Mac
-
@jmcgoverndesign, no that's a batch file which only works on a PC.
Macs use bash scripts instead.
This script should open Google in Safari:
#!/bin/bash open -a Safari http://google.comThis script takes parameters, and should work similarly to the Windows batch file that googles your parameters:
#!/bin/bash open -a Safari http://google.com/search?q=$1%20$2%20$3%20$4I tested it that and it worked for me.
-
in linux you can use this
#!/bin/bash busqueda=$@ google-chrome https://www.google.com/search?q=${busqueda// /+} -
R Russ referenced this topic on
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login