打印文件 hello.txt 中包含are的行及其后一行(如果有的话)。$ sed -n '____________' hello.txtHow are youThis game is goodYou are funny
查看答案
将所有[4]|*替换成2$ echo '2.3/[4]|*6 foo 5.3-[4]|*9' | sed -e '_____________'2.3/26 foo 5.3-29
打印所有以word开头,且后面的尾部没有其他字符或为s、y或le的行。$ echo -e 'worded\nword\nwordy\nunword\nwords\nwordle' | sed -n '________________'wordwordywordswordle
将42//5或42/5替换为8:$ echo 'a+42//5-c pressure*3+42/5-14256' | sed -e '_____________'a+8-c pressure*3+8-14256
删除所有从'(' 到下一个 ')'的内容$ echo 'a/b(division) + c%d() - (a#(b)2(' | sed -e '______________'a/b + c%d - 2(