题目内容

按以下方式输出:$ seq 11 | sed '________________'1-2-34-5-67-8-910-11

查看答案
更多问题

打印文件 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

答案查题题库