使用 sed 编写 shell 脚本
示例脚本如下所示:
#!/bin/bash
sed -i~ 's/user1/user2/g' myfile.txt
它在 myfile.txt 中将 user1 替换为 user2
我如何更改上面的脚本以获得脚本找到 user1 和 user1 的确认用user2替换它?
基本上,如果找不到 user1,它应该在命令提示符上给出警报消息。
谢谢!
Sample script is shown below:
#!/bin/bash
sed -i~ 's/user1/user2/g' myfile.txt
It replaces user1 with user2 in myfile.txt
How can I change above script to get confirmation that the script found user1 & replaced it with user2?
Basically, if it doesn't find user1, it should give an alert message on the command prompt.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
比较 after 的另一种方法是 grep before:
-q
意味着 grep 安静地运行,如果找到则返回成功,因此只有那时它才会继续进行替换。An alternative to diffing after is to grep before:
The
-q
means that grep runs quietly and returns success if found, so then and only then will it go on to do the replacement.尝试
diff
工具:Try
diff
tool: