PowerShell/Scripts/speak-checklist.ps1
2021-08-29 17:50:03 +02:00

36 lines
850 B
PowerShell
Executable File

<#
.SYNOPSIS
speak-checklist.ps1 [<name>]
.DESCRIPTION
Speaks the given checklist by text-to-speech (TTS).
.EXAMPLE
PS> .\speak-checklist.ps1
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
param([string]$Name = "")
try {
if ($Name -eq "") { $Name = read-host "Enter the name of the checklist" }
$Lines = Get-Content -path "$PSScriptRoot/../Data/Checklists/$Name.txt"
clear-host
$Step = 1
foreach($Line in $Lines) {
if ($Line -like "HEAD*") { & "$PSScriptRoot/write-big.ps1" "$($Line.substring(5))"; continue }
""
"($Step) $Line"
& "$PSScriptRoot/speak-english.ps1" "$Line"
$Dummy = read-host " Say <Check> or press <Return> to continue"
$Step++
}
exit 0
} catch {
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}