Skip to content

Instantly share code, notes, and snippets.

@dsoares
Last active October 12, 2016 10:31
Show Gist options
  • Save dsoares/0994cd4bcc30c17c4f20 to your computer and use it in GitHub Desktop.
Save dsoares/0994cd4bcc30c17c4f20 to your computer and use it in GitHub Desktop.
Slurp with Perl
#!/usr/bin/perl
#
# 2014-11-19: dsoares
# also see https://metacpan.org/pod/File::Slurp
#
use strict;
use warnings;
use 5.010;
sub slurp {
my $file = shift;
open my $fh, '<', $file or die;
local $/ = undef;
my $cont = <$fh>;
close $fh;
return $cont;
}
my $file = 'data.txt';
my $data = slurp($file);
print $data;
$data =~ s/Java\s+is\s+Hot/Jabba The Hutt/g;
say '-' x 30;
print $data;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment