mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-01-28 16:48:39 +01:00
Remove obsolete scripts
This commit is contained in:
parent
dd9dfda0b8
commit
8149c001b7
@ -1,15 +0,0 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Plays blues music
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser and plays blues music.
|
||||
.EXAMPLE
|
||||
PS> ./play-blues-music
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-default-browser.ps1" "http://streema.com/radios/play/American_Road_Radio"
|
||||
exit 0 # success
|
@ -1,15 +0,0 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Plays classical music
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser and plays classical music.
|
||||
.EXAMPLE
|
||||
PS> ./play-classical-music
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-default-browser.ps1" "http://streema.com/radios/play/KUSC_KDSC"
|
||||
exit 0 # success
|
@ -1,15 +0,0 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Plays country music
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser and plays country music.
|
||||
.EXAMPLE
|
||||
PS> ./play-country-music
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-default-browser.ps1" "http://streema.com/radios/play/HPR1_The_Classic_Country_Channel"
|
||||
exit 0 # success
|
@ -1,15 +0,0 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Plays dance music
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser and plays dance music.
|
||||
.EXAMPLE
|
||||
PS> ./play-dance-music
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-default-browser.ps1" "http://streema.com/radios/play/D100_Radio"
|
||||
exit 0 # success
|
@ -1,15 +0,0 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Plays folk music
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser and plays folk music.
|
||||
.EXAMPLE
|
||||
PS> ./play-folk-music
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-default-browser.ps1" "http://streema.com/radios/play/Real_Country_96.5_KBDN"
|
||||
exit 0 # success
|
@ -1,15 +0,0 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Plays indie music
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser and plays indie music.
|
||||
.EXAMPLE
|
||||
PS> ./play-indie-music
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-default-browser.ps1" "http://streema.com/radios/play/Prog_Rock"
|
||||
exit 0 # success
|
@ -1,15 +0,0 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Plays jazz music
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser and plays jazz music.
|
||||
.EXAMPLE
|
||||
PS> ./play-jazz-music
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-default-browser.ps1" "http://streema.com/radios/play/KLEB"
|
||||
exit 0 # success
|
@ -1,15 +0,0 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Plays metal music
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser and plays metal music.
|
||||
.EXAMPLE
|
||||
PS> ./play-metal-music
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-default-browser.ps1" "http://streema.com/radios/play/Power_Rock_93.9_WKTG"
|
||||
exit 0 # success
|
@ -1,15 +0,0 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Plays pop music
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser and plays pop music.
|
||||
.EXAMPLE
|
||||
PS> ./play-pop-music
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-default-browser.ps1" "http://streema.com/radios/play/Nick_Radio"
|
||||
exit 0 # success
|
@ -1,15 +0,0 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Plays RnB music
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser and plays RnB music.
|
||||
.EXAMPLE
|
||||
PS> ./play-rnb-music
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-default-browser.ps1" "http://streema.com/radios/play/Biker_Valley_Radio_2"
|
||||
exit 0 # success
|
@ -1,15 +0,0 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Plays rock music
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser and plays rock music.
|
||||
.EXAMPLE
|
||||
PS> ./play-rock-music
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-default-browser.ps1" "http://streema.com/radios/play/RADIO_BOB_BOBs_Alternative"
|
||||
exit 0 # success
|
Loading…
Reference in New Issue
Block a user