PowerShell/Scripts/open-ebay.ps1
2021-10-29 13:10:37 +02:00

16 lines
315 B
PowerShell
Executable File

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