1. Dashboard
  2. Forum
    1. Unerledigte Themen
  3. Mitglieder
    1. Letzte Aktivitäten
    2. Benutzer online
    3. Team-Mitglieder
    4. Trophäen
    5. Mitgliedersuche
  4. Tutorial Bereich
  • Anmelden
  • Registrieren
  • Suche
Dieses Thema
  • Alles
  • Dieses Thema
  • Dieses Forum
  • Seiten
  • Forum
  • Lexikon
  • Erweiterte Suche
  1. Informatik Forum
  2. Webmaster & Internet
  3. Entwicklung

MAC-Adressen aus .dat-datei auslesen und in .txt-datei ausgeben

  • _Mad_Max_
  • 26. Mai 2009 um 11:32
  • Unerledigt
  • _Mad_Max_
    6
    _Mad_Max_
    Mitglied
    Punkte
    295
    Beiträge
    53
    • 26. Mai 2009 um 11:32
    • #1

    Hallo

    stehe vor dem problem dass ich mit PS noch nicht wirklich gearbeitet habe und jetzte aus einer .dat Datei MAC-Adressen auslesen soll die dann in einer .txt datei ausgegeben werden soll

    am beginn der txt-Datei soll noch einige Zeilen eines vordefinierten textes stehen.
    DIe MAC Adressen sind insofern erkennbar da sie in eckigen Klammern stehen (Zeile Beginnt dann immer mit [ ) und die Adresse immer als 12stellige HEX-Zahl angegeben ist

    vorgegangen wär ich folgendermaßen:

    Code
    echo "MAC_ACTION = {ALLOW}" |
    Out-File -filepath (D:\temp\MACList.txt)
    #der obige Teil schreibt den vordefinierten Text in die Datei der am Anfang kommen soll
    $content = gc D:\temp\Datei.dat
    foreach ($line in $content) { 
     if ($line -match "^[')
    #bestimmt die Zeilen in denen die MAC-Adressen zu finden sind (keine andere Zeile in der .dat Datei fängt mit [ an
    
    
    #Der Teil fehlt noch 
     
    
    
     echo '$mac' |
    Out-File -filepath (D:\temp\MACList.txt')-append
    #fügt die Mac-Adressen zu dem anfänglichen Text hinzu
    Alles anzeigen




    Jetzt hab ich noch das Problem wie ich die reinen Macadressen ohne die umschließenden [] bekomme
    Ausserdem sollten die MAC-Adressen nur mit kleinbuchstaben sein - weiss nicht genau wie ich den konvertierungsbefehl ToLower (glaube mit dem sollte es gehen) richtig einbaue)

    [size=-1]The path of the righteous man is beset on all sides by the inequities of the selfish and the tyranny of evil men. Blessed is he who, in the name of charity and good will, shepherds the weak through the valley of the darkness. For he is truly his brother's keeper and the finder of lost children. And I will strike down upon thee with great vengeance and furious anger those who attempt to poison and destroy my brothers. And you will know my name is the Lord when I lay my vengeance upon thee.[/size]

  • Paulchen
    1
    Paulchen
    Gast
    • 26. Mai 2009 um 11:56
    • #2
    Zitat von _Mad_Max_

    stehe vor dem problem dass ich mit PS noch nicht wirklich gearbeitet habe

    PostScript?

  • _Mad_Max_
    6
    _Mad_Max_
    Mitglied
    Punkte
    295
    Beiträge
    53
    • 26. Mai 2009 um 12:34
    • #3

    ups - Powershell ist gemeint

    hab da ned aufgepasst bei der bezeichnung :frowning_face:

    [size=-1]The path of the righteous man is beset on all sides by the inequities of the selfish and the tyranny of evil men. Blessed is he who, in the name of charity and good will, shepherds the weak through the valley of the darkness. For he is truly his brother's keeper and the finder of lost children. And I will strike down upon thee with great vengeance and furious anger those who attempt to poison and destroy my brothers. And you will know my name is the Lord when I lay my vengeance upon thee.[/size]

  • jeuneS2
    11
    jeuneS2
    Mitglied
    Reaktionen
    17
    Punkte
    1.227
    Beiträge
    238
    • 26. Mai 2009 um 13:06
    • #4

    Falls es auf dem System auch sed gibt:

    Code
    sed 's/^[^\[].*//; /^$/ d; s/^\[\([[:xdigit:]]\{12\}\)\].*/\1//; y/ABCDEF/abcdef/' < foo.dat

    Why bother spending time reading up on things? Everybody's an authority, in a free land.

    Einmal editiert, zuletzt von jeuneS2 (26. Mai 2009 um 13:12) aus folgendem Grund: conversion to lower case

  • _Mad_Max_
    6
    _Mad_Max_
    Mitglied
    Punkte
    295
    Beiträge
    53
    • 26. Mai 2009 um 13:43
    • #5

    muss leider powershell sein

    [size=-1]The path of the righteous man is beset on all sides by the inequities of the selfish and the tyranny of evil men. Blessed is he who, in the name of charity and good will, shepherds the weak through the valley of the darkness. For he is truly his brother's keeper and the finder of lost children. And I will strike down upon thee with great vengeance and furious anger those who attempt to poison and destroy my brothers. And you will know my name is the Lord when I lay my vengeance upon thee.[/size]

  • _Mad_Max_
    6
    _Mad_Max_
    Mitglied
    Punkte
    295
    Beiträge
    53
    • 26. Mai 2009 um 15:24
    • #6

    mittlerweile hab ichs hinbekommen :)

    Code
    [FONT=Courier New][size=10][COLOR=#0000ff][FONT=Courier New][size=10][COLOR=#0000ff][FONT=Courier New][size=10][COLOR=#0000ff]
    echo[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10] [/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#800000][FONT=Courier New][size=10][COLOR=#800000][FONT=Courier New][size=10][COLOR=#800000]"MAC_ACTION = {ALLOW}"[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10] [/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#0000ff][FONT=Courier New][size=10][COLOR=#0000ff][FONT=Courier New][size=10][COLOR=#0000ff]|
    [/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#5f9ea0][FONT=Courier New][size=10][COLOR=#5f9ea0][FONT=Courier New][size=10][COLOR=#5f9ea0]Out-File[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10] [/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#5f9ea0][FONT=Courier New][size=10][COLOR=#5f9ea0][FONT=Courier New][size=10][COLOR=#5f9ea0]-filepath[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10] ([/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#800000][FONT=Courier New][size=10][COLOR=#800000][FONT=Courier New][size=10][COLOR=#800000]"C:\Temp\MACList.txt"[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10])
    [/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#800080][FONT=Courier New][size=10][COLOR=#800080][FONT=Courier New][size=10][COLOR=#800080]$content[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10] [/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#ff0000][FONT=Courier New][size=10][COLOR=#ff0000][FONT=Courier New][size=10][COLOR=#ff0000]=[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10] [/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#0000ff][FONT=Courier New][size=10][COLOR=#0000ff][FONT=Courier New][size=10][COLOR=#0000ff]gc[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10] ([/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#800000][FONT=Courier New][size=10][COLOR=#800000][FONT=Courier New][size=10][COLOR=#800000]"C:\Temp\nodes.dat"[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10])
    [/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#0000ff][FONT=Courier New][size=10][COLOR=#0000ff][FONT=Courier New][size=10][COLOR=#0000ff]foreach[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10] ([/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#800080][FONT=Courier New][size=10][COLOR=#800080][FONT=Courier New][size=10][COLOR=#800080]$line[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10] [/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#0000ff][FONT=Courier New][size=10][COLOR=#0000ff][FONT=Courier New][size=10][COLOR=#0000ff]in[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10] [/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#800080][FONT=Courier New][size=10][COLOR=#800080][FONT=Courier New][size=10][COLOR=#800080]$content[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10]) { 
    [/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#0000ff][FONT=Courier New][size=10][COLOR=#0000ff][FONT=Courier New][size=10][COLOR=#0000ff]if[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10] ([/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#800080][FONT=Courier New][size=10][COLOR=#800080][FONT=Courier New][size=10][COLOR=#800080]$line[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10] [/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#ff0000][FONT=Courier New][size=10][COLOR=#ff0000][FONT=Courier New][size=10][COLOR=#ff0000]-match[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10] [/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#800000][FONT=Courier New][size=10][COLOR=#800000][FONT=Courier New][size=10][COLOR=#800000]"^\[00'[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10])
    {[/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#800080][FONT=Courier New][size=10][COLOR=#800080][FONT=Courier New][size=10][COLOR=#800080]$line[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10] [/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#ff0000][FONT=Courier New][size=10][COLOR=#ff0000][FONT=Courier New][size=10][COLOR=#ff0000]=[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10] [/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#800080][FONT=Courier New][size=10][COLOR=#800080][FONT=Courier New][size=10][COLOR=#800080]$line[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10] [/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#ff0000][FONT=Courier New][size=10][COLOR=#ff0000][FONT=Courier New][size=10][COLOR=#ff0000]-replace[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10] [/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#800000][FONT=Courier New][size=10][COLOR=#800000][FONT=Courier New][size=10][COLOR=#800000]"\["[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10],[/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#800000][FONT=Courier New][size=10][COLOR=#800000][FONT=Courier New][size=10][COLOR=#800000]""
    [/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10][/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#800080][FONT=Courier New][size=10][COLOR=#800080][FONT=Courier New][size=10][COLOR=#800080]$line[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10] [/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#ff0000][FONT=Courier New][size=10][COLOR=#ff0000][FONT=Courier New][size=10][COLOR=#ff0000]=[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10] [/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#800080][FONT=Courier New][size=10][COLOR=#800080][FONT=Courier New][size=10][COLOR=#800080]$line[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10] [/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#ff0000][FONT=Courier New][size=10][COLOR=#ff0000][FONT=Courier New][size=10][COLOR=#ff0000]-replace[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10] [/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#800000][FONT=Courier New][size=10][COLOR=#800000][FONT=Courier New][size=10][COLOR=#800000]"]"[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10],[/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#800000][FONT=Courier New][size=10][COLOR=#800000][FONT=Courier New][size=10][COLOR=#800000]""
    [/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10]
    [/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#800080][FONT=Courier New][size=10][COLOR=#800080][FONT=Courier New][size=10][COLOR=#800080]$mac[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10] [/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#ff0000][FONT=Courier New][size=10][COLOR=#ff0000][FONT=Courier New][size=10][COLOR=#ff0000]=[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10] [/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#800080][FONT=Courier New][size=10][COLOR=#800080][FONT=Courier New][size=10][COLOR=#800080]$line[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10].[/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#8b4513][FONT=Courier New][size=10][COLOR=#8b4513][FONT=Courier New][size=10][COLOR=#8b4513]ToLower[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10]() 
    [/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#0000ff][FONT=Courier New][size=10][COLOR=#0000ff][FONT=Courier New][size=10][COLOR=#0000ff]echo[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10] [/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#800000][FONT=Courier New][size=10][COLOR=#800000][FONT=Courier New][size=10][COLOR=#800000]"$mac"[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10] [/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#0000ff][FONT=Courier New][size=10][COLOR=#0000ff][FONT=Courier New][size=10][COLOR=#0000ff]|
    [/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#5f9ea0][FONT=Courier New][size=10][COLOR=#5f9ea0][FONT=Courier New][size=10][COLOR=#5f9ea0]Out-File[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10] [/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#5f9ea0][FONT=Courier New][size=10][COLOR=#5f9ea0][FONT=Courier New][size=10][COLOR=#5f9ea0]-filepath[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10] ([/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#800000][FONT=Courier New][size=10][COLOR=#800000][FONT=Courier New][size=10][COLOR=#800000]"c:\Temp\MACList.txt"[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10] )[/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#ff0000][FONT=Courier New][size=10][COLOR=#ff0000][FONT=Courier New][size=10][COLOR=#ff0000]-[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][COLOR=#0000ff][FONT=Courier New][size=10][COLOR=#0000ff][FONT=Courier New][size=10][COLOR=#0000ff]append
    [/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][size=10][FONT=Courier New][size=10]}
    }
    [/SIZE][/FONT][/SIZE][/FONT]
    Alles anzeigen

    [size=-1]The path of the righteous man is beset on all sides by the inequities of the selfish and the tyranny of evil men. Blessed is he who, in the name of charity and good will, shepherds the weak through the valley of the darkness. For he is truly his brother's keeper and the finder of lost children. And I will strike down upon thee with great vengeance and furious anger those who attempt to poison and destroy my brothers. And you will know my name is the Lord when I lay my vengeance upon thee.[/size]

  • Maximilian Rupp 27. Dezember 2024 um 00:26

    Hat das Thema aus dem Forum Programmieren nach Entwicklung verschoben.

Jetzt mitmachen!

Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!

Benutzerkonto erstellen Anmelden

Rechtliches

Impressum

Datenschutzerklärung