删除模式后面的5行(包括带模式的行):
sed -e '/pattern/,+5d' file.txt
删除模式后的5行(不包括带模式的行):
sed -e '/pattern/{n;N;N;N;N;d}' file.txt