It would be nice to have an option to only output matched lines: ``` $ cat test.txt foo aaa bar baz foo bbb bar $ sd 'foo (.*) bar' '$1' < test.txt aaa baz bbb $ sd --only-matched-lines 'foo (.*) bar' '$1' < test.txt aaa bbb ```
It would be nice to have an option to only output matched lines: