阅读量:0
在 Linux 中,可以使用 sed
命令来指定行数。以下是一些常见的用法:
- 打印第 3 行到第 5 行:
sed -n '3,5p' input_file.txt
- 删除第 3 行到第 5 行:
sed '3,5d' input_file.txt > output_file.txt
- 在第 3 行之前插入一行文本:
echo "New line" | sed '3a\ New line content' input_file.txt > output_file.txt
- 在第 3 行之后插入一行文本:
echo "New line" | sed '3b\ New line content' input_file.txt > output_file.txt
在这些示例中,input_file.txt
是要处理的文件,output_file.txt
是处理后的输出文件。你可以根据需要修改这些文件名。