我已经看到许多基于以下假设的搜索和替换线程:1. 您要么知道要明确查找的字符串或子字符串,要么 2. 您知道它在字符串中的确切位置,或者 3. 两者结合。在我的情况下,我有一个包含一列和 1M 行的 csv 文件。例如
1,google.com
2,yahoo.com
3,twitter.com
4,xyz.com
对于每一列,我想用 http 分号 dble 正斜杠 dubdubdub替换每个字符(递增的整数)直到并包括逗号
到目前为止,我有以下
HTTPSTRING="http://www."
cat X.csv << Will this ensure that the while block is executed on this file?
while IFS=, read line
do {$line/(.*?),/HTTPSTRING} << This is where I am having trouble
done
exit 0
我想要一个每行包含一个 URL 的文本文件,例如
http://www.google.com
...
http://www.${999,999_more_urls}
非常感谢你提前
刘易斯