mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 12:34:25 +01:00
16 lines
345 B
PowerShell
Executable File
16 lines
345 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Shows the Serenade manual
|
|
.DESCRIPTION
|
|
This script launches the Web browser with the Serenade manual.
|
|
.EXAMPLE
|
|
PS> ./show-serenade-manual
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
& "$PSScriptRoot/open-default-browser.ps1" "https://serenade.ai/docs/"
|
|
exit 0 # success
|