mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-12-16 19:50:45 +01:00
Add open-wired-website.ps1
This commit is contained in:
parent
22e7873c9e
commit
7dc0a82db4
@ -1,10 +1,10 @@
|
|||||||
<#
|
<#
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Opens the slashdot website
|
Opens the Slashdot website
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script launches the Web browser with the slashdot.org website.
|
This script launches the Web browser with the Slashdot website.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-slash-dot
|
PS> ./open-slash-dot-website
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
15
Scripts/open-wired-website.ps1
Normal file
15
Scripts/open-wired-website.ps1
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Opens the WIRED website
|
||||||
|
.DESCRIPTION
|
||||||
|
This script launches the Web browser with the WIRED website.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./open-wired-website
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
#>
|
||||||
|
|
||||||
|
& "$PSScriptRoot/open-browser.ps1" "https://www.wired.com/"
|
||||||
|
exit 0 # success
|
Loading…
Reference in New Issue
Block a user