PowerShell/Scripts/open-twitter.ps1
2021-10-29 13:04:18 +02:00

16 lines
327 B
PowerShell
Executable File

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