shell/sed进阶/排除命令.sh

9 lines
142 B
Bash

!/bin/bash
#排除命令,使本来起作用的命令不起作用
sed -n '/heade/!p' test
#反转文本文件
sed -n '{1!G ; h; $p}' test