PowerShell #07 – Matrix

      Keine Kommentare zu PowerShell #07 – Matrix

Damit ihr meine Matrix auch mal eben schnell nachbauen könnt, gibt es hier den Code für das einfache Kopieren:

function generateRnd {
    $buffer = [console]::BufferWidth
    [string]$rnd = random -Minimum 1000000000 -Maximum 9999999999
    while($rnd.Length -lt $buffer) {
        $rnd = $rnd + $(random -Minimum 1000000000 -Maximum 9999999999)
    }
    return $rnd.Substring(0,$buffer)
}
[console]::ForegroundColor = "Green"
[console]::BackgroundColor = "Black"
while (1 -eq 1) {
    echo $(generateRnd)
    sleep -Milliseconds 1
}