shell脚本中删除撤销
时间: 2023-12-29 19:25:21 浏览: 126
在shell脚本中,可以使用sed命令来删除或撤销某些内容。下面是一个例子:
```shell
# 创建一个名为test.txt的文件,并写入一些内容
echo "hello world" > test.txt
echo "hello shell" >> test.txt
echo "hello script" >> test.txt
# 使用sed命令删除包含"shell"的行
sed -i '/shell/d' test.txt
# 查看删除后的文件内容
cat test.txt
```
执行上述脚本后,将会删除包含"shell"的行,最终输出的文件内容为:
```
hello world
hello script
```
这样就实现了在shell脚本中删除撤销的功能。
阅读全文