mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-02 12:24:11 +02:00
Add hello.ps1
This commit is contained in:
parent
68c00db77a
commit
49360833f1
17
Scripts/hello.ps1
Normal file
17
Scripts/hello.ps1
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Replies to "Hi"
|
||||||
|
.DESCRIPTION
|
||||||
|
This script replies to 'Hi' by text-to-speech (TTS).
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./hi
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
#>
|
||||||
|
|
||||||
|
$Reply = "Hey!", "Hello!", "Hi there!", "Hey there!", "Hey! How's it going?", "What's up?", "What's happening?", "How goes it?" | Get-Random
|
||||||
|
|
||||||
|
& "$PSScriptRoot/give-reply.ps1" "$Reply"
|
||||||
|
exit 0 # success
|
Loading…
Reference in New Issue
Block a user