mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-12-12 17:50:46 +01:00
17 lines
363 B
PowerShell
17 lines
363 B
PowerShell
|
<#
|
|||
|
.SYNOPSIS
|
|||
|
Wakes up an human
|
|||
|
.DESCRIPTION
|
|||
|
This PowerShell script plays the sound of Big Ben to wake a human up.
|
|||
|
.EXAMPLE
|
|||
|
PS> ./wake-up-human.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
|