Last active
July 12, 2019 13:52
-
-
Save oldengremlin/f00558b7283ffa076c125684ab78cf57 to your computer and use it in GitHub Desktop.
begin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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