Help for this page

Select Code to Download


  1. or download this
    use String::ShellQuote qw( shell_quote );
    
    my $cmd = shell_quote( "prog", $_->{Sub_URL}, "(?i)Podcast", @args );
    system( $cmd );
    
  2. or download this
    my @cmd = ( "prog", $_->{Sub_URL}, "(?i)Podcast", @args );
    system( { $cmd[0] } @cmd );