Thread Bestimmte Zeilen aus einer Text-Datei löschen? (13 answers)
Opened by yasukatakaya at 2007-09-17 14:53

renee
 2007-09-17 15:18
#99556 #99556
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
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;

my $file = '/path/to/file.ext';
my $tmp = $file . '.tmp';
my @unwanted = qw(ICT ProgramVariables);

open my $in, '<', $file or die $!;
open my $out, '>', $tmp or die $!;

while( my $line = <$in> ){
    next if grep{ $line =~ /^\Q$_\E/ }@unwanted;
    print $out $line;
}

close $out;
close $in;

rename $tmp, $file;


ungetestet...
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 Bestimmte Zeilen aus einer Text-Datei löschen?