sed删除指定行
sed命令常用到的两个选项:-i : 直接在文件上编辑 (edit files in place)-e[默认选项]:只在命令行输出,而文件不改变(add the script to the commands to be executed)注:使用sed命令可以使用 -i 或者 -e 选项(以下例子仅以-i举例)(1)sed命令删除特定行号删除第N行:sed -i 'Nd' filename删除第N
·
sed命令常用到的两个选项:
-i : 直接在文件上编辑 (edit files in place)
-e[默认选项]:只在命令行输出,而文件不改变(add the script to the commands to be executed)
注:使用sed命令可以使用 -i 或者 -e 选项(以下例子仅以-i举例)
(1)sed命令删除特定行号
删除第N行:
sed -i 'Nd' filename
删除第N~M行:
sed -i 'N,Md' filename #file的[N,M]行都被删除
(2)删除shell变量表示的行号(配合for等语句使用)
sed -i "\${var1},${var2}d" filename # 这里引号必须为双引号
(3)删除最后一行
sed -i '$d' filename
(4)sed命令删除包含特定字符行: 删除包含"xxx"的行
sed -i '/xxx/d' filename
更多推荐
已为社区贡献4条内容
所有评论(0)