最佳答案
这不会产生任何输出。为什么呢?
$ echo 'this 1 2 3' | grep '\d\+'
但这些确实是:
$ echo 'this 1 2 3' | grep '\s\+'
this 1 2 3
$ echo 'this 1 2 3' | grep '\w\+'
this 1 2 3