mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
16 lines
298 B
PowerShell
16 lines
298 B
PowerShell
<#
|
|
.SYNOPSIS
|
|
Plays a dog sound
|
|
.DESCRIPTION
|
|
This script plays a dog sound.
|
|
.EXAMPLE
|
|
PS> ./play-dog-sound
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
& "$PSScriptRoot/play-mp3.ps1" "$PSScriptRoot/../Data/Sounds/dog.mp3"
|
|
exit 0 # success
|