Grep命令 - 文本处理

时间:2014-09-25 04:12:55

标签: bash shell sed grep

我有一个links.txt。我需要这个输出。

links.txt:

http://www.google.com/test
https://bing.com/web2
www.yahoo.com/link/link2

output.txt的

<a href="http://www.google.com/test" target="_blank">http://www.google.com/test</a>
<a href="https://bing.com/web2" target="_blank">https://bing.com/web2</a>
<a href="www.yahoo.com/link/link2" target="_blank">www.yahoo.com/link/link2</a>

1 个答案:

答案 0 :(得分:0)

有各种方法,但我会使用以下

for i in $(cat links.txt); do echo "<a href=\"$i\" target=\"_blank\">$i</a>"; done