PowerShell/Scripts/repeat-last-reply.ps1
2021-12-10 11:51:51 +01:00

30 lines
669 B
PowerShell

<#
.SYNOPSIS
Repeats the last reply
.DESCRIPTION
This repeats the last reply by text-to-speech (TTS).
.EXAMPLE
PS> ./repeat-last-reply
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
function GetTempDir {
if ("$env:TEMP" -ne "") { return "$env:TEMP" }
if ("$env:TMP" -ne "") { return "$env:TMP" }
if ($IsLinux) { return "/tmp" }
return "C:\Temp"
}
if (test-path "$(GetTempDir)/last_reply_given.txt" -pathType leaf) {
$Reply = "It was: "
$Reply += Get-Content "$(GetTempDir)/last_reply_given.txt"
} else {
$Reply = "Sorry, I can't remember."
}
& "$PSScriptRoot/give-reply.ps1" "$Reply"
exit 0 # success