Changes between Initial Version and Version 1 of Ticket #14336, comment 1
- Timestamp:
- Aug 9, 2018, 10:03:19 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #14336, comment 1
initial v1 1 1 with Regular Expression enabled of not? 2 A quick check show that `grep -F "--with-..."` wortks, but `grep "--with-..."` 3 I guess when Regular Expression is enabled, the -e option should be explicitly passed then, as `grep -e "--with-..." works as expected 2 3 A quick check shows that `grep -F "--with-..."` works, but `grep "--with-..."` doesn't. 4 5 I guess when Regular Expression is enabled, the -e option should be explicitly passed then, as `grep -e "--with-..." works as expected. 4 6 5 7 https://github.com/haiku/haiku/blob/master/src/apps/text_search/Grepper.cpp#L272 6 8 7 `argv[argc++] = fRegularExpression ? "-e" : "-F";` 9 {{{ 10 argv[argc++] = fRegularExpression ? "-e" : "-F"; 11 }}}