PowerShell/Scripts/open-github.ps1

16 lines
317 B
PowerShell
Raw Normal View History

2021-10-27 08:41:03 +02:00
<#
.SYNOPSIS
Opens GitHub's website
.DESCRIPTION
2021-10-28 07:36:33 +02:00
This script launches the Web browser with the GitHub website.
2021-10-27 08:41:03 +02:00
.EXAMPLE
PS> ./open-github
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-browser.ps1" "https://github.com"
exit 0 # success