Hi Jim,
Jim Meyering <jim <at> meyering.net> writes:
> +t=`sed -n '/^g''l_INCLUDE_EXCLUDE_PROG(.* [\[\(.*\)\]])/{s//\1/;s/,/ /gp
> +}' $c`
That isn't POSIX compatible yet. You need newlines right after '{'
and you cannot use ';' inside '{...}':
t=`sed -n '/^g''l_INCLUDE_EXCLUDE_PROG(.* [\[\(.*\)\]])/{
s//\1/
s/,/ /gp
}' $c`
Cheers,
Ralf
_______________________________________________
Bug-coreutils mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-coreutils
