export equivalent command in PERL

Hi

I need an equivalent command in PERL for the following.

export LC_ALL=C;

I hope this is the command. Please confirm this and correct me if i am wrong

$ENV{LC_ALL}="C";

Thanks and Regards
Ammu

Hi.

Only for child processes (unless you were to use eval in hte shell for the output of the perl script). See How to use $ENV in Perl to change enviroment variable - LinuxQuestions.org for a recent discussion ... cheers, drl