mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-19 16:38:17 +02:00
8 lines
295 B
PowerShell
Executable File
8 lines
295 B
PowerShell
Executable File
$progressBar = @('⣾','⣽','⣻','⢿','⡿','⣟','⣯','⣷')
|
|
$progressIndex = 0
|
|
|
|
do {
|
|
Write-Host "`r$($progressBar[$progressIndex]) Working on something..." -NoNewline
|
|
$progressIndex = ($progressIndex + 1) % $progressBar.Length
|
|
Start-Sleep -milliseconds 100
|
|
} while ($true) |