mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-21 15:33:15 +01:00
55 lines
1.2 KiB
Markdown
55 lines
1.2 KiB
Markdown
The *roll-a-dice.ps1* Script
|
|
===========================
|
|
|
|
This PowerShell script rolls a dice and returns the number by text-to-speech (TTS).
|
|
|
|
Parameters
|
|
----------
|
|
```powershell
|
|
/home/markus/Repos/PowerShell/scripts/roll-a-dice.ps1 [<CommonParameters>]
|
|
|
|
[<CommonParameters>]
|
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
|
```
|
|
|
|
Example
|
|
-------
|
|
```powershell
|
|
PS> ./roll-a-dice
|
|
|
|
```
|
|
|
|
Notes
|
|
-----
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
Related Links
|
|
-------------
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
Script Content
|
|
--------------
|
|
```powershell
|
|
<#
|
|
.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
|
|
```
|
|
|
|
*(generated by convert-ps2md.ps1 as of 11/20/2024 11:52:00)*
|