标签: grep
如何匹配grep中没有空格的行?例如,
xyz a b c d e f
只有xyz才能匹配。模式^\S*$似乎不起作用。
^\S*$
答案 0 :(得分:0)
像
$ grep '^\S*$' input xyz
或强>
$ grep '^[^ ]*$' input xyz