mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-03-26 14:26:10 +01:00
Add several scripts
This commit is contained in:
parent
abb40a9566
commit
fa7142e862
15
Scripts/open-slash-dot.ps1
Executable file
15
Scripts/open-slash-dot.ps1
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Opens the slashdot website
|
||||||
|
.DESCRIPTION
|
||||||
|
This script launches the Web browser with the slashdot.org website.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./open-slash-dot
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
#>
|
||||||
|
|
||||||
|
& "$PSScriptRoot/open-browser.ps1" "https://slashdot.org"
|
||||||
|
exit 0 # success
|
15
Scripts/open-windy.ps1
Executable file
15
Scripts/open-windy.ps1
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Opens windy.com
|
||||||
|
.DESCRIPTION
|
||||||
|
This script launches the Web browser with the windy.com website.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./open-windy
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
#>
|
||||||
|
|
||||||
|
& "$PSScriptRoot/open-browser.ps1" "https://www.windy.com"
|
||||||
|
exit 0 # success
|
15
Scripts/open-wolfram-alpha.ps1
Executable file
15
Scripts/open-wolfram-alpha.ps1
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Opens WolframAlpha
|
||||||
|
.DESCRIPTION
|
||||||
|
This script launches the Web browser with the WolframAlpha website.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./open-wolfram-alpha
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
#>
|
||||||
|
|
||||||
|
& "$PSScriptRoot/open-browser.ps1" "https://www.wolframalpha.com"
|
||||||
|
exit 0 # success
|
Loading…
Reference in New Issue
Block a user