linux sed的所有用法
时间: 2023-12-16 10:53:52 浏览: 155
`sed`是一种流编辑器,它可以在文本文件中进行操作。以下是`sed`的所有用法:
1. 替换字符串
```
sed 's/old_string/new_string/' file.txt
```
2. 替换字符串并保存到原文件
```
sed -i 's/old_string/new_string/' file.txt
```
3. 替换指定行中的字符串
```
sed '5s/old_string/new_string/' file.txt
```
4. 替换所有出现的字符串
```
sed 's/old_string/new_string/g' file.txt
```
5. 替换指定范围内的字符串
```
sed '2,5s/old_string/new_string/g' file.txt
```
6. 删除指定行
```
sed '5d' file.txt
```
7. 删除匹配到的行
```
sed '/pattern/d' file.txt
```
8. 在指定行后面添加内容
```
sed '5a new_line' file.txt
```
9. 在指定行前面添加内容
```
sed '5i new_line' file.txt
```
10. 打印所有行
```
sed -n 'p' file.txt
```
11. 打印指定行
```
sed -n '5p' file.txt
```
12. 打印指定范围内的行
```
sed -n '2,5p' file.txt
```
13. 查找并替换
```
sed '/pattern/s/old_string/new_string/g' file.txt
```
14. 多个命令组合
```
sed -e 's/old_string/new_string/g' -e 's/another_old_string/another_new_string/g' file.txt
```
15. 从文件读取命令
```
sed -f commands.txt file.txt
```
以上是`sed`的常见用法,你还可以通过`man sed`命令查看更多详细的用法说明。
阅读全文