Skip to content

Instantly share code, notes, and snippets.

@kolyuchiy
Created March 3, 2016 15:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kolyuchiy/97c16d94a835618f75a5 to your computer and use it in GitHub Desktop.
Save kolyuchiy/97c16d94a835618f75a5 to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl
use strict;
use warnings;
use autodie qw(:all);
my $str = do { local $/; <STDIN> };
$str =~ s/[^0-9a-fA-F]//gm;
$str = pack('H*', $str);
print $str;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment