I\'m wondering if it\'s possible (recommended might be the better word) to use sed to convert URLs into HTML hyperlinks in a document. Therefore, it would look for things li
The file contain the following content
http://something.com
The following code will give the correct output
sed -r 's/(.*)/\\1\<\/a\>/' file