mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-12-03 05:14:56 +01:00
16 lines
358 B
PowerShell
16 lines
358 B
PowerShell
|
<#
|
|||
|
.SYNOPSIS
|
|||
|
Shows the Bash manual
|
|||
|
.DESCRIPTION
|
|||
|
This script launches the Web browser with the Bash manual.
|
|||
|
.EXAMPLE
|
|||
|
PS> ./show-bash-manual
|
|||
|
.NOTES
|
|||
|
Author: Markus Fleschutz · License: CC0
|
|||
|
.LINK
|
|||
|
https://github.com/fleschutz/PowerShell
|
|||
|
#>
|
|||
|
|
|||
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.gnu.org/software/bash/manual/bash.html"
|
|||
|
exit 0 # success
|