Changes between Initial Version and Version 1 of Ticket #4548, comment 5
- Timestamp:
- Nov 18, 2018, 8:41:25 PM (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #4548, comment 5
initial v1 5 5 > This is trivial, is there no issue with sed? 6 6 7 {{{ 7 8 % for sed in $(which -a sed) ; do echo -n "$sed: " ; $sed -E '' /dev/null && echo ok ; done 8 9 /usr/gnu/bin/sed: ok … … 10 11 /usr/ucb/sed: sed: Unknown flag: E 11 12 /usr/bin/sed: ok 13 }}} 14 IOW, even if /usr/xpg4/bin/sed takes precedence, there is no issue. But I think the BRE variant is also trivial, so -E is not really needed.