vote up 0 vote down star

I have the following code in my .Zshrc

function google; {
             $VIEW "http://www.google.com/search?q='url-encode "${(j: :)@}"'"
     }

I get

google masi                                         
google:1: no such file or directory: http://www.google.com/search?q='url-encode masi'

How can you get Google Search to work in Zsh?

flag

1  
What is $VIEW set to? – paxdiablo Apr 29 at 4:29
@Pax: Thank you for the tip! I managed to solve the problem by replacing $VIEW by open. – Masi Apr 29 at 4:37

4 Answers

vote up 1 vote down check

What's the value of $VIEW?

Set it to the path of a web browser or downloader.

link|flag
I accept the answer, since it suggests that the problem is in the value of $VIEW. – Masi Apr 29 at 16:31
vote up 1 vote down

Masi, if you're going to cut and paste things into zshrc then ask for help, you need to at least tell us where you got them.

link|flag
-1 for adding to uselessness. – jim Apr 29 at 4:37
I don't think it's unreasonable to expect some context for questions asked here. – Matthew Flaschen Apr 29 at 4:43
1  
@Matthew, this isn't an answer - it should have been left as a comment. Still, a -1 is harsh for that, I'd prefer to leave a comment explaining why it's a bad idea (like this one). If your rep was 2000, I'd be less forgiving :-) – paxdiablo Apr 29 at 4:54
Fair enough, Pax. – Matthew Flaschen Apr 29 at 5:10
@Matthew: The source is SO at stackoverflow.com/questions/171563/… – Masi Apr 29 at 16:28
show 2 more comments
vote up 1 vote down

Don't know anything about zsh but looks like you've got a problem with your quotes.

Looks like it evaluates the url to being

http://www.google.com/search?q='url-encode masi'

Which probably isn't what you were after. (url encoded version of 'masi') ?

link|flag
@Lou: True. I had initially a problem with smart quotes. Your quotation is also better than the original. – Masi Apr 29 at 4:39
vote up 4 vote down

The following solves the problem in Mac

function google; {
             open "http://www.google.com/search?q='url-encode "${(j: :)@}"'"
     }

and in Ubuntu

function google; {
             gnome-open "http://www.google.com/search?q='url-encode "${(j: :)@}"'"
     }
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.