]> andersk Git - config-package-dev.git/blame_incremental - decode
Write the prerm and postrm maintainer script fragments in reverse order when DH_COMPA...
[config-package-dev.git] / decode
... / ...
CommitLineData
1#!/usr/bin/perl
2$ARGV[0] =~ s/\+([^+]*)\+/unparse($1)/eg;
3print $ARGV[0];
4sub unparse {
5 $_ = $_[0];
6 return "/" unless $_;
7 return "_" if $_ eq "-";
8 return uc($_) if /^[a-z]$/;
9 s/^x//;
10 return chr hex $_;
11}
This page took 1.600885 seconds and 5 git commands to generate.