Thread Umgang mit Zero-byte separierten Listen... (4 answers)
Opened by hollandhasser at 2010-10-25 14:50

renee
 2010-10-25 15:15
#142166 #142166
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Als kleines Programm und nicht als Einzeiler:
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/perl

use strict;
use warnings;

use Digest::MD5 qw(md5_hex);

my @content;

{
  open my $fh, '<', 'null_byte.txt' or die $!;
  local $/ = "\0";
  while ( my $entry = <$fh> ) {
      push @content, $entry, md5_hex( $entry );
  }
  close $fh;
}

open my $fh, '>', 'null_byte_new.txt' or die $!;
print $fh join "\0", @content;
close $fh;
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread Umgang mit Zero-byte separierten Listen...