Thread hash automatischfüllen (22 answers)
Opened by Gast at 2006-08-09 13:27

renee
 2006-08-09 13:41
#68776 #68776
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Dein Problem ist, dass Du den Hash immer wieder neu anlegst. So sollte es funktionieren:
Code: (dl )
1
2
3
4
5
6
7
8
9
foreach my $port_address_table (@port_address_table) {
foreach my $mac_address (@mac_address_result) {
if ($mac_address eq $port_address_table){
if ($mac_address =~/[a-fA-F1-9]$/){
open(DATEI,">>d:/mac/mac_tabel.txt");
print DATEI "$mac_address\n";
close DATEI;
push (@mac_tabel_result, $mac_address);
$mac_ip{$mac_address} = $ipaddress ;


Bzgl. Anmeldung: Ich hoffe, dass ein Admin sich bald darum kümmern kann.
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 hash automatischfüllen