mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-11 05:43:53 +02:00
Rename folder Docs to docs
This commit is contained in:
48
docs/repeat-last-reply.md
Normal file
48
docs/repeat-last-reply.md
Normal file
@ -0,0 +1,48 @@
|
||||
## The *repeat-last-reply.ps1* PowerShell Script
|
||||
|
||||
repeat-last-reply.ps1
|
||||
|
||||
|
||||
## Parameters
|
||||
```powershell
|
||||
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
## Source Code
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Repeats the last reply
|
||||
.DESCRIPTION
|
||||
This PowerShell script repeats the last reply by text-to-speech (TTS).
|
||||
.EXAMPLE
|
||||
PS> ./repeat-last-reply
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
.NOTES
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
#>
|
||||
|
||||
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
|
||||
```
|
||||
|
||||
*Generated by convert-ps2md.ps1 using the comment-based help of repeat-last-reply.ps1*
|
Reference in New Issue
Block a user