SYNOPSIS

     use IPC::System::Locale qw(system backtick);
    
     # set locale to C
     system(...);
    
     # set locale explicitly
     system({lang=>"id_ID"} ...);
    
     # same for backtick (qx)
     my $output = backtick("df");

    Set default options for all calls (prefix each option with dash):

     use IPC::System::Locale 'system', 'backtick', -lang=>'id_ID';

DESCRIPTION

FUNCTIONS

 system([ \%opts ], @args)

    This is a shortcut for IPC::System::Options::system({lang=>"C"}, ...)
    (you can also set lang or other options explicitly).

    This routine might be helpful if you are checking the output of some
    program and want to make sure that the output is in English/C locale.

 backtick([ \%opts ], @args)

    This is a shortcut for IPC::System::Options::backtick({lang=>"C"}, ...)
    (you can also set lang or other options explicitly).

    This routine might be helpful if you are checking the output of some
    program and want to make sure that the output is in English/C locale.

SEE ALSO

    IPC::System::Options

