Skip to content

Instantly share code, notes, and snippets.

@saml
Created July 30, 2015 16:40
Show Gist options
  • Select an option

  • Save saml/ccde1e62a4167ae711af to your computer and use it in GitHub Desktop.

Select an option

Save saml/ccde1e62a4167ae711af to your computer and use it in GitHub Desktop.
use strict;
use warnings;
foreach my $line (<STDIN>) {
if ($line =~ /FILEVERSION/) {
if ($line =~ /\S+\s+(\S+).+/) {
print "$1\n";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment