mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 20:44:17 +01:00
1.4 KiB
1.4 KiB
The write-chart.ps1 Script
write-chart.ps1
Parameters
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
Source Code
<#
.SYNOPSIS
Writes a chart
.DESCRIPTION
This PowerShell script writes a chart.
.EXAMPLE
PS> ./write-chart
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
function WriteChartLine { param([string]$Text, [float]$Value, [float]$Max)
$Num = ($Value * 40.0) / $Max
while ($Num -ge 1.0) {
write-host -noNewLine "█"
$Num -= 1.0
}
if ($Num -ge 0.875) {
write-host -noNewLine "▉"
} elseif ($Num -ge 0.75) {
write-host -noNewLine "▊"
} elseif ($Num -ge 0.625) {
write-host -noNewLine "▋"
} elseif ($Num -ge 0.5) {
write-host -noNewLine "▌"
} elseif ($Num -ge 0.375) {
write-host -noNewLine "▍"
} elseif ($Num -ge 0.25) {
write-host -noNewLine "▎"
} elseif ($Num -ge 0.125) {
write-host -noNewLine "▏"
}
if ($Max -eq 100.0) {
write-host " $($Value)% $Text"
} else {
write-host " $Value / $Max $Text"
}
}
"2021 Wins"
WriteChartLine "Markus" 40.5 100.0
WriteChartLine "Andrea" 30.9 100.0
exit 0 # success
Generated by convert-ps2md.ps1 using the comment-based help of write-chart.ps1