Help for this page

Select Code to Download


  1. or download this
    use Win32::API;
    my $GetCommandLine = Win32::API->new('kernel32', 'GetCommandLine', [ ]
    + , 'P' );
    $cmdline = $GetCommandLine->Call();
    
  2. or download this
    BEGIN { @ORIGINAL_ARGV = @ARGV };
    use GetOpt::Long ...
    ...