PowerShell/Scripts/show-jenkins-manual.ps1
2021-12-04 16:16:08 +01:00

16 lines
349 B
PowerShell

<#
.SYNOPSIS
Shows the Jenkins manual
.DESCRIPTION
This script launches the Web browser with the Jenkins manual.
.EXAMPLE
PS> ./show-jenkins-manual
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://www.jenkins.io/doc/book/"
exit 0 # success