Skip to content

Instantly share code, notes, and snippets.

@joninvski
Created May 6, 2013 12:51
Show Gist options
  • Save joninvski/5524903 to your computer and use it in GitHub Desktop.
Save joninvski/5524903 to your computer and use it in GitHub Desktop.
Hex 2 Dec in perl
#!/usr/bin/perl -w
# hexadec.pl
$foo = <STDIN>;
$hexval = sprintf("%x", $foo);
$decval = hex($hexval);
print "$decval\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment