Skip to content

Instantly share code, notes, and snippets.

@robinsmidsrod
Created July 9, 2009 15:14
Show Gist options
  • Save robinsmidsrod/143733 to your computer and use it in GitHub Desktop.
Save robinsmidsrod/143733 to your computer and use it in GitHub Desktop.
if ( Win32_MODE ) {
my $command_shell = $ENV{'ComSpec'} || 'command';
@args = ( [ $command_shell, qw( /c ), win32_parse_cmd_line $_[0] ] );
}
else {
@args = ( [ qw( sh -c ), @_ ] );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment