This does not generate any output. How come?
$ echo 'this 1 2 3' | grep 'd+'
But these do:
$ echo 'this 1 2 3' | grep 's+'
this 1 2 3
$ echo 'this 1 2 3' | grep 'w+'
this 1 2 3
See Question&Answers more detail:osThis does not generate any output. How come?
$ echo 'this 1 2 3' | grep 'd+'
But these do:
$ echo 'this 1 2 3' | grep 's+'
this 1 2 3
$ echo 'this 1 2 3' | grep 'w+'
this 1 2 3
See Question&Answers more detail:os