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.
25 lines
363 B
25 lines
363 B
15 years ago
|
#!/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";
|