题目内容

打印所有以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(

删除所有从'(' 到下一个 ')' 的内容,但如果其中出现了 '(' 则不删除$ echo 'a/b(division) + c%d() - (a#(b)2(' | sed -e '______________'a/b + c%d - (a#2(

将文件links.txt中的markdown链接进行替换,替换示例如下:$ cat links.txt# Linux Kernel## Bash Shell## The free software fundation$ sed -e '______________' links.txt[Linux Kernel]( linux-kernel)[Bash Shell]( bash-shell)[The free software fundation]( the-free-software-fundation)

答案查题题库