最佳答案
我试图输出一个包含字符串中两个单词之间所有内容的字符串:
输入:
"Here is a String"
产出:
"is a"
使用:
sed -n '/Here/,/String/p'
包含端点,但我不想包含它们。