PowerShell/docs/play-lion-sound.md
2025-01-17 08:37:30 +01:00

1015 B

The play-lion-sound.ps1 Script

This PowerShell script plays a lion sound.

Parameters

/Repos/PowerShell/scripts/play-lion-sound.ps1 [<CommonParameters>]

[<CommonParameters>]
    This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, 
    WarningVariable, OutBuffer, PipelineVariable, and OutVariable.

Example

PS> ./play-lion-sound

Notes

Author: Markus Fleschutz | License: CC0

https://github.com/fleschutz/PowerShell

Script Content

<#
.SYNOPSIS
	Plays a lion sound
.DESCRIPTION
	This PowerShell script plays a lion sound.
.EXAMPLE
	PS> ./play-lion-sound
.LINK
	https://github.com/fleschutz/PowerShell
.NOTES
	Author: Markus Fleschutz | License: CC0
#>

& "$PSScriptRoot/play-mp3.ps1" "$PSScriptRoot/../data/sounds/lion.mp3"
exit 0 # success

(page generated by convert-ps2md.ps1 as of 01/17/2025 08:37:11)