views:

22

answers:

1

Why does the code not open the proper Google page?

elinks http://google.com/search/?q=`echo "ERROR database is being accessed by other users" | sed 's# #+#g'`
+3  A: 

Because you added an extraneous / after search. Try this instead:

 elinks http://google.com/search?q=`echo "ERROR database is being accessed by other users" | sed 's# #+#g'`
Daniel