| Server IP : 67.43.7.42 / Your IP : 216.73.216.61 Web Server : Apache System : Linux host.isabellascookies.com 2.6.32-754.35.1.el6.x86_64 #1 SMP Sat Nov 7 12:42:14 UTC 2020 x86_64 User : isabella ( 503) PHP Version : 5.5.38 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/bin/ |
Upload File : |
#! /usr/bin/perl
#============================================================================
# This is a compatibility interface to Pbmtoxbm.
#
# It exists so existing programs and procedures that rely on Pbmtox10bm
# syntax continue to work. You should not make new use of Pbmtox10bm and
# if you modify an old use, you should upgrade it to use Pbmtoxbm.
#
# Pbmtoxbm with the -x10 option is backward compatible with Pbmtox10bm.
#============================================================================
use strict;
use File::Basename;
use Cwd 'abs_path';
my $infile;
foreach (@ARGV) {
if (/^-/) {
# It's an option. But Pbmtox10bm didn't have any options.
print(STDERR "Invalid option '$_'\n");
exit(10);
} else {
# It's a parameter
if (defined($infile)) {
print(STDERR
"You may specify at most one non-option parameter.\n");
exit(10);
} else {
$infile = $_;
}
}
}
my $infileParm = defined($infile) ? $infile : "-";
# We want to get Pbmtoxbm from the same directory we came from if
# it's there. Frequently, the directory containing Netpbm programs is
# not in the PATH and we were invoked by absolute path.
my $my_directory = abs_path(dirname($0));
$ENV{"PATH"} = $my_directory . ":" . $ENV{"PATH"};
exec('pbmtoxbm', '-x10', $infileParm);