Skip to content

Instantly share code, notes, and snippets.

@meru-akimbo
Created May 15, 2012 15:16
Show Gist options
  • Save meru-akimbo/2702560 to your computer and use it in GitHub Desktop.
Save meru-akimbo/2702560 to your computer and use it in GitHub Desktop.
Learning Perl 9.6-3
$^I = ".out";
while(<>){
s/Fred/not_using_word/gi;
s/Wilma/Fred/gi;
s/not_using_word/Wilma/gi;
print;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment