Thread Code / Style Frage (3 answers)
Opened by Linuxer at 2007-01-22 17:37

renee
 2007-01-22 17:44
#73496 #73496
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Man kann es übrigens auch noch so machen:
Code: (dl )
1
2
3
4
5
6
7
8
#!/usr/bin/perl

use strict;
use warnings;

my $file = '/path/file.txt';
my $content = do{local (@ARGV,$/) = $file; <>};
print $content;


TIMTOWTDI
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 Code / Style Frage