You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tellico/src/core/tellico-1-3-update.pl

25 lines
363 B

#!/usr/bin/env perl
my $input;
my $oldvalue;
while( $input = <STDIN> )
{
chop $input;
if( $input =~ /^Write Images In File\=(.*)/)
{
$oldvalue=$1;
if( $oldvalue eq "true" )
{
print "Image Location=ImagesInFile\n";
}
else
{
print "Image Location=ImageAppDir\n";
}
}
}
print "# DELETE [General Options]Write Images In File\n";