2024-10-01 15:11:03 +02:00
|
|
|
|
<#
|
2021-11-01 18:05:05 +01:00
|
|
|
|
.SYNOPSIS
|
2022-02-10 08:57:52 +01:00
|
|
|
|
Plays an elephant sound
|
2021-11-01 18:05:05 +01:00
|
|
|
|
.DESCRIPTION
|
2022-02-10 08:57:52 +01:00
|
|
|
|
This PowerShell script plays an elephant sound.
|
2021-11-01 18:05:05 +01:00
|
|
|
|
.EXAMPLE
|
|
|
|
|
PS> ./play-elephant-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/elephant.mp3"
|
2021-11-01 18:05:05 +01:00
|
|
|
|
exit 0 # success
|