#!/usr/bin/perl -w
# This file was preprocessed, do not edit!
use strict;
use Getopt::Long;
use vars qw($escape $unescape);
sub usage {
print STDERR <<EOF;
Usage: debconf-unescape -e|-u < input-text
-e, --escape escape text
-u, --unescape unescape text
Exactly one of -e or -u must be used.
EOF
exit(1);
}
$escape=0;
$unescape=0;
GetOptions(
"escape|e" => \$escape,
"unescape|u" => \$unescape,
) || usage();
if ($escape == $unescape) {
usage();
}
if ($escape) {
while (<>) {
s/\\/\\\\/g;
s/\n/\\n/g;
print;
}
} else {
while (<>) {
for (split /(\\.)/) {
s/\\(.)/$1 eq "n" ? "\n" : $1/eg;
print;
}
}
}
King Pictures is a Canadian based company who offer a huge and ever growing range of high quality eLearning solutions that teach using studio quality narrated videos backed-up with practical hands-on examples and comprehensive working files. All courses are created by trained educators and experts in video based education.
The emphasis is on teaching real life skills that are essential for progressing in today's commercial environment.