Skip to content

Instantly share code, notes, and snippets.

@aanoaa
Created March 21, 2013 14:15
Show Gist options
  • Select an option

  • Save aanoaa/5213329 to your computer and use it in GitHub Desktop.

Select an option

Save aanoaa/5213329 to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl
while (<>) {
chomp;
if (/YOUR_PATTERN_GOES_HERE/) {
print "Matched: |$`<$&>$'|\n";
} else {
print "No match: |$_|\n";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment