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'`
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'`
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'`