如何根据另一个文件中的值替换文件中的字符串? (内例)
如何根据另一个文件中的值替换文件中的字符串。
示例,2 个文件 - 输入、输出
输入:
12345 1
输出:
(1,'a lot of text', 'some other info',0,null, 12345),
(2,'a lot of text', 'some other info',0,null, 12345),
(3,'a lot of text', 'some other info',0,null, 12345),
(4,'a lot of text', 'some other info',0,null, 12345),
(5,'a lot of text', 'some other info',0,null, 12345);
需要完成的操作:
从文件“输入”中读取值,并在文件“输出”中将所有“12345”替换为“1”。 感谢您提前的帮助
how to replace strings in file, based on values from another file.
Example, 2 files - input, output
input:
12345 1
output:
(1,'a lot of text', 'some other info',0,null, 12345),
(2,'a lot of text', 'some other info',0,null, 12345),
(3,'a lot of text', 'some other info',0,null, 12345),
(4,'a lot of text', 'some other info',0,null, 12345),
(5,'a lot of text', 'some other info',0,null, 12345);
Needs to be done:
read values from file 'input', and replace all '12345' with '1' in file 'output'.
Thanks for help in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
好的,我遇到了这个解决方案:
ok, I came across this solution:
怎么样:
How about:
无需让 AWK 重复调用
sed
。只需让 AWK 将第一个文件读入数组即可:No need to have AWK repeatedly call
sed
. Just have AWK read the first file into an array:请记住备份“输出”。
编辑:另请注意,如果“输入”包含 sed 的特殊字符,则会失败。对于简单的字母/数字,它可以正常工作。
Remember to make a backup of "output".
EDIT: Also note that if "input" contains characters that are special to sed, this will fail. For plain letters/digits it'll work fine.