mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-09 21:07:40 +02:00
Renamed folder Scripts to scripts
This commit is contained in:
18
scripts/roll-a-dice.ps1
Executable file
18
scripts/roll-a-dice.ps1
Executable file
@ -0,0 +1,18 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Replies to "Roll a dice"
|
||||
.DESCRIPTION
|
||||
This PowerShell script rolls a dice and returns the number by text-to-speech (TTS).
|
||||
.EXAMPLE
|
||||
PS> ./roll-a-dice
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
.NOTES
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
#>
|
||||
|
||||
$Reply = "It's", "I get", "Now it's", "OK, I have" | Get-Random
|
||||
$Number = "1", "2", "3", "4", "5", "6" | Get-Random
|
||||
|
||||
& "$PSScriptRoot/speak-english.ps1" "$Reply $Number."
|
||||
exit 0 # success
|
Reference in New Issue
Block a user