Skip to content

Instantly share code, notes, and snippets.

@oldengremlin
Last active July 12, 2019 13:52
Show Gist options
  • Save oldengremlin/f00558b7283ffa076c125684ab78cf57 to your computer and use it in GitHub Desktop.
Save oldengremlin/f00558b7283ffa076c125684ab78cf57 to your computer and use it in GitHub Desktop.
begin
#!/usr/bin/perl
$ARGV[0]="." if $#ARGV==-1;
my $string = $ARGV[0]; my $notfound = 1;
while (<STDIN>) { if ($notfound) { $notfound=0 if /$string/; next if $notfound; } print $_; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment