Re: Extract URL's from message
Hello Trey,
* Quoting Trey Sizemore [00:44 Thu 10 May]:
> Thanks. Does anyone happen to know what the correct syntax is in
> url_handler.sh to get the URL's opened in new tabs in Firefox? I've
> gotten as close as getting the first URL to open, but selecting a
> second results in:
>
> Error: Failed to send command: 500 command not parseable
In my url_handler.sh I have this :
[..]
case $method in
http|https|gopher)
if test x$DISPLAY = x; then
( netscape -remote openURL\($url\) || netscape $url )
|| exit 1
else
lynx $url || exit 1
fi
;;
[..]