Skip to content

Instantly share code, notes, and snippets.

@gugod
Last active July 28, 2017 06:28
Show Gist options
  • Save gugod/8a9807f42bc045794867d2077bd526ee to your computer and use it in GitHub Desktop.
Save gugod/8a9807f42bc045794867d2077bd526ee to your computer and use it in GitHub Desktop.
while(<>) {
if (/^catch me$/..eof()) {
...
}
}
$found_catch_me = 0;
while(<>) {
if ($found_catch_me) {
...
} elsif (/^catch me$/) {
$found_catch_me = 1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment