我的服务器操作系统是 Debian 7。我想将 id say 'xyz' 添加到以下 URL
example.com/abc.html?id=White
example.com/abc.html?id=Black
那么 URL 应该是这样的
example.com/abc.html?id=White&trackId=xyz
example.com/abc.html?id=Black&trackId=xyz
在数据 feed 中有很多 URL,并且 ?id= 前面可能有任何颜色
我想为此添加 cron 作业,以下载 feed 并将 id 添加到 URL。
请帮助我。谢谢。
答案1
假设您只想将 trackId=xyz 附加到每个 URL 的末尾:
awk '{print $0 "&trackId=xyz"}' <in.txt >out.txt