Glynn Clements wrote: > > rather than: > > unset LC_ALL > > That should be "export -n LC_ALL"; unset only unsets shell variables. Sorry, that will work. If a variable is exported, all changes to the variable are exported, so unsetting it will also remove the export. -- Glynn Clements <glynn at gclements.plus.com>