Make Links in an e-mail Clickable (Rated 5)Description:
Make links in an e-mail clickable. Very handy if you hate HTML e-mail, but nevertheless from time to time get e-mails full of urls, it's nice to be able to just follow the link in that case. Note the use of pre-existing scripts chained together in a pipe: it's The Unix Way.
(http://www.devscripts.net/browse.php?script=83) Code starts here
#!/bin/sh
#linkify: make links in an e-mail clickable
show -noshowproc $* | rmhdr | urlify > /tmp/$$.html
lynx /tmp/$$.html
rm /tmp/$$.html
Last Edited: 1046379605
Submitted by Devscripts on 27-02-2003 21:00 |