使用尴尬在同一行上链接和文本



我的文件看起来像是第二行上的网址:

bash中的代码用于创建new.txt

while read A B
do
    echo "https://www.xxxx.com/add_2_cart.php?catno=${A}&storage=lyophilized&rxns=100&num=1&test=mixed&format=tube"
done < inputfile > new.txt

文件1 new.txt

的内容
PXL-A0000005 DTE3504500000005 
web address
PXL-A0000007 DTE3504500000007 
web address

我正在尝试使用以下方式重新格式化该文件:

 awk '1;getline <"link.txt"' new.txt > newfile.txt

但是要获得相同的输出,我不确定为什么或如何在一行上输出每一个:谢谢:)

所需的输出

PXL-A0000005 DTE3504500000005 web address
PXL-A0000007 DTE3504500000007 web address

您必须使用尴尬吗?paste应该完成工作:

 paste -s -d' n' new.txt

结果:

 PXL-A0000005 DTE3504500000005  web address
 PXL-A0000007 DTE3504500000007  web address

相关内容

  • 没有找到相关文章

最新更新