> Isaac <[email protected]> wrote: > > In my testing it seemed that -e and -f don't work; > > it looks like they're not hooked up? >
Ok, I've tracked down the issue; it's not quite what I thought. Current toybox and musl, as well as glibc 2.11.1 (what Lucid shipped with): $ echo testabc |./toybox grep -e abc $ echo testabc |./toybox grep abc $ echo testabc |./toybox grep -E -e abc testabc $ echo testabc |./toybox grep -E abc testabc While I never bothered figuring out what POSIX BREs actually should do, I know that's not it. (Default is POSIX BREs, which GNU saw fit to add -G for.) Thanks, Isaac Dunham _______________________________________________ Toybox mailing list [email protected] http://lists.landley.net/listinfo.cgi/toybox-landley.net
