diff --git a/Scripts/open-pixabay.ps1 b/Scripts/open-pixabay-website.ps1 similarity index 91% rename from Scripts/open-pixabay.ps1 rename to Scripts/open-pixabay-website.ps1 index f4d96e76..21841a9b 100755 --- a/Scripts/open-pixabay.ps1 +++ b/Scripts/open-pixabay-website.ps1 @@ -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 diff --git a/Scripts/open-ufa-website.ps1 b/Scripts/open-ufa-website.ps1 new file mode 100644 index 00000000..5a29657e --- /dev/null +++ b/Scripts/open-ufa-website.ps1 @@ -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 diff --git a/Scripts/open-unsplash-website.ps1 b/Scripts/open-unsplash-website.ps1 new file mode 100755 index 00000000..348e7e73 --- /dev/null +++ b/Scripts/open-unsplash-website.ps1 @@ -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