On Friday 27 February 2004 13:41, Robert Shearman wrote:
On Friday 27 February 2004 14:21, Robert Shearman wrote:
$ LC_ALL=C sed -e '1,2d' -e 's/(.*)/ "\1",/' ../../AUTHORS
| grep Ove |
"Ove K\x{FFFF}ven",
Ok, after a make distclean I was able to reproduce your problem. Somehow when called like that sed does not pick up $LC_ALL anymore. I guess there's a subshell in between somewhere? A wrapper? When you export $LC_ALL things start to work again. Attached patch does that.
Changelog: export LC_ALL before calling sed.