Help for this page

Select Code to Download


  1. or download this
    foreach (@versions) {
        unless($_ eq $version) {
            runscript(...);
        }
    }
    
  2. or download this
    runscript(...) foreach (grep { $_ ne $version } @versions);