mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 09:04:18 +01:00
55 lines
2.1 KiB
PowerShell
Executable File
55 lines
2.1 KiB
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
simulate-matrix.ps1
|
|
.DESCRIPTION
|
|
Simulates the Matrix (fun).
|
|
.EXAMPLE
|
|
PS> .\simulate-matrix.ps1
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
try {
|
|
$Table = import-csv "$PSScriptRoot/../Data/matrix.csv"
|
|
|
|
clear-host
|
|
foreach($Row in $Table) {
|
|
for ($i = 0; $i -lt 4; $i++) {
|
|
write-host -foregroundColor green -noNewline $($Row.A)
|
|
write-host -foregroundColor green -noNewline $($Row.B)
|
|
write-host -foregroundColor green -noNewline $($Row.C)
|
|
write-host -foregroundColor green -noNewline $($Row.D)
|
|
write-host -foregroundColor green -noNewline $($Row.E)
|
|
write-host -foregroundColor green -noNewline $($Row.F)
|
|
write-host -foregroundColor green -noNewline $($Row.G)
|
|
write-host -foregroundColor green -noNewline $($Row.H); start-sleep -milliseconds 1
|
|
write-host -foregroundColor green -noNewline $($Row.I)
|
|
write-host -foregroundColor green -noNewline $($Row.J)
|
|
write-host -foregroundColor green -noNewline $($Row.K)
|
|
write-host -foregroundColor green -noNewline $($Row.L)
|
|
write-host -foregroundColor green -noNewline $($Row.M)
|
|
write-host -foregroundColor green -noNewline $($Row.N)
|
|
write-host -foregroundColor green -noNewline $($Row.O)
|
|
write-host -foregroundColor green -noNewline $($Row.P); start-sleep -milliseconds 1
|
|
write-host -foregroundColor green -noNewline $($Row.Q)
|
|
write-host -foregroundColor green -noNewline $($Row.R)
|
|
write-host -foregroundColor green -noNewline $($Row.S)
|
|
write-host -foregroundColor green -noNewline $($Row.T)
|
|
write-host -foregroundColor green -noNewline $($Row.U)
|
|
write-host -foregroundColor green -noNewline $($Row.V)
|
|
write-host -foregroundColor green -noNewline $($Row.W)
|
|
write-host -foregroundColor green -noNewline $($Row.X)
|
|
write-host -foregroundColor green -noNewline $($Row.Y)
|
|
write-host -foregroundColor green -noNewline $($Row.Z); start-sleep -milliseconds 1
|
|
}
|
|
write-host ""
|
|
start-sleep -milliseconds 200
|
|
}
|
|
exit 0
|
|
} catch {
|
|
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|