Skip to content

Instantly share code, notes, and snippets.

@zoffixznet
Created December 2, 2015 23:53
Show Gist options
  • Save zoffixznet/55af69fe0f709aa60ba5 to your computer and use it in GitHub Desktop.
Save zoffixznet/55af69fe0f709aa60ba5 to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl
use strict;
use warnings;
use 5.022;
use Mojo::Util qw/slurp decode encode/;
my $line = 1;
my $code = join "\n", map sprintf('%2d %s', $line++, $_),
split /\n/, decode 'utf8', slurp 'data.html';
say encode 'utf8', $code;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment