我有一个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>
答案 0 :(得分:0)
有各种方法,但我会使用以下
for i in $(cat links.txt); do echo "<a href=\"$i\" target=\"_blank\">$i</a>"; done