PowerShell/Scripts/roll-a-dice.ps1
2021-12-13 08:20:02 +01:00

19 lines
442 B
PowerShell

<#
.SYNOPSIS
Replies to "Roll a dice"
.DESCRIPTION
This script rolls a dice and returns the number by text-to-speech (TTS).
.EXAMPLE
PS> ./roll-a-dice
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
$Reply = "It's", "I get", "Now it's", "OK, I have" | Get-Random
$Number = "1", "2", "3", "4", "5", "6" | Get-Random
& "$PSScriptRoot/give-reply.ps1" "$Reply $Number."
exit 0 # success