高斋晓开卷,独共圣人语。这篇文章主要讲述sed -n 和 -i 不要一起用相关的知识,希望能为你提供帮助。
【sed -n 和 -i 不要一起用】sed -n如果没有输出,那么加上一个 -i会直接清空目标文件。
[root@study ~]# sed s/#// file1
a
b
c
d
e
f
[root@study ~]# sed s/#// file1 -n
[root@study ~]# sed s/#// file1 -n -i.bak
[root@study ~]# cat file1
#上面的命令没有输出,下面是file1的源文件内容
[root@study ~]# cat file1.bak
a
b
#c
d
e
f
推荐阅读
- Linux内核内存管理总结
- [首发][Ubuntu]VSCode搭建Linux Kernel单步调试IDE环境
- 视频更新(代码分析8之单步调试ARM64启动汇编与重定位)
- 灵魂拷问之调度与切换十六问
- (系统级I?O)
- 运维小白成长记——第六周
- 系统cron计划任务小练习
- #yyds干货盘点#python面向对象之工厂函数调用__init__()
- 编写脚本实现登陆远程主机