mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-22 07:53:21 +01:00
17 lines
349 B
PowerShell
Executable File
17 lines
349 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Plays the Big Ben sound
|
|
.DESCRIPTION
|
|
This PowerShell script plays the sound of Big Ben.
|
|
.EXAMPLE
|
|
PS> ./play-big-ben.ps1
|
|
(listen and enjoy)
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz | License: CC0
|
|
#>
|
|
|
|
& "$PSScriptRoot/play-mp3.ps1" "$PSScriptRoot/../data/sounds/Big Ben.mp3"
|
|
exit 0 # success
|