标签: regex sed
如何在sed中正确捕捉到这样的字眼? text O"Neil text ...
text O"Neil text ...
我已经尝试'\w*\"\w*',但显然似乎无法工作。
'\w*\"\w*'
答案 0 :(得分:1)
像这样:
# cat File aaaa text O"Neil text bbbb cccc
输出:
# sed -n '/\w*"\w*/p' File text O"Neil text
或者:
sed -n "/\w*\"\w*/p" File