Skip to content

Instantly share code, notes, and snippets.

@rsrchboy
Created June 25, 2013 23:21
Show Gist options
  • Save rsrchboy/5863372 to your computer and use it in GitHub Desktop.
Save rsrchboy/5863372 to your computer and use it in GitHub Desktop.
perl layers RULE! gzip testfile.txt perl ./test.pl < testfile.txt.gz
#!/usr/bin/env perl
use strict;
use warnings;
use v5.10;
binmode STDIN, ':gzip';
say while <>
one
two three ha!
four
five
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment