Skip to content

Instantly share code, notes, and snippets.

@charlesthomas
Last active August 29, 2015 13:57
Show Gist options
  • Save charlesthomas/9695001 to your computer and use it in GitHub Desktop.
Save charlesthomas/9695001 to your computer and use it in GitHub Desktop.
Quick URL decode
#!/usr/bin/perl
use strict;
use URI::Escape;
print uri_unescape($ARGV[0]) . "\n";
exit;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment