PowerShell/Scripts/open-amazon-website.ps1
Markus Fleschutz 6cc17e29a7 Simple rename
2021-11-18 15:53:43 +01:00

15 lines
314 B
PowerShell
Executable File

<#
.SYNOPSIS
Opens the Amazon website
.DESCRIPTION
This script launches the Web browser with the Amazon website.
.EXAMPLE
PS> ./open-amazon-website
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-browser.ps1" "https://www.amazon.com"