PowerShell/scripts/play-frog-sound.ps1

16 lines
312 B
PowerShell
Raw Normal View History

2023-10-31 12:48:22 +01:00
<#
2021-11-01 18:05:05 +01:00
.SYNOPSIS
Plays a frog sound
.DESCRIPTION
2022-02-10 08:57:52 +01:00
This PowerShell script plays a frog sound.
2021-11-01 18:05:05 +01:00
.EXAMPLE
PS> ./play-frog-sound
.LINK
https://github.com/fleschutz/PowerShell
2022-09-06 21:42:04 +02:00
.NOTES
Author: Markus Fleschutz | License: CC0
2021-11-01 18:05:05 +01:00
#>
2023-10-31 11:25:11 +01:00
& "$PSScriptRoot/play-mp3.ps1" "$PSScriptRoot/../data/sounds/frog.mp3"
2021-11-01 18:05:05 +01:00
exit 0 # success