mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 09:04:18 +01:00
Add open-ufa-website.ps1 and open-unsplash-website.ps1
This commit is contained in:
parent
243a2cdef5
commit
3978a8d1a6
@ -4,7 +4,7 @@
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser with the Pixabay website.
|
||||
.EXAMPLE
|
||||
PS> ./open-pixabay
|
||||
PS> ./open-pixabay-website
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
15
Scripts/open-ufa-website.ps1
Normal file
15
Scripts/open-ufa-website.ps1
Normal file
@ -0,0 +1,15 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Opens the UFA website
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser with the UFA website.
|
||||
.EXAMPLE
|
||||
PS> ./open-ufa-website
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-browser.ps1" "https://www.ufainc.com"
|
||||
exit 0 # success
|
15
Scripts/open-unsplash-website.ps1
Executable file
15
Scripts/open-unsplash-website.ps1
Executable file
@ -0,0 +1,15 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Opens the Unsplash website
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser with the Unsplash website.
|
||||
.EXAMPLE
|
||||
PS> ./open-unsplash-website
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-browser.ps1" "https://unsplash.com"
|
||||
exit 0 # success
|
Loading…
Reference in New Issue
Block a user