mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 09:04:18 +01:00
17 lines
332 B
PowerShell
17 lines
332 B
PowerShell
<#
|
|
.SYNOPSIS
|
|
Plays a frog sound
|
|
.DESCRIPTION
|
|
This PowerShell script plays a frog sound.
|
|
.EXAMPLE
|
|
PS> ./play-frog-sound
|
|
(listen and enjoy)
|
|
.NOTES
|
|
Author: Markus Fleschutz / License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
& "$PSScriptRoot/play-mp3.ps1" "$PSScriptRoot/../Data/Sounds/frog.mp3"
|
|
exit 0 # success
|