/usr/share/config-package-dev/decode is in config-package-dev 5.1.2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | #!/usr/bin/perl
# Reverse the encoding performed by the "encode" helper.
#
# This is not currently used by config-package-dev itself, but can by
# used by helper programs that want to determine what files are diverted
# by a package generated using this system.
use strict;
use warnings;
use Debian::Debhelper::config_package;
print decode($ARGV[0]);
|