Jogando com perl
:
$ echo 'I am going home. Home is where heart is.' |
perl -lne 'for (split /\W+/) {print $& if /\bhome\b/i}'
E ainda mais curto, adaptado de Joseph R. comentário abaixo (graças a ele)
$ echo 'I am going home. Home is where heart is.' |
perl -lne 'print $& while /\bhome\b/ig'
Resultado:
home
Home