PowerShell/Scripts/show-bash-manual.ps1

16 lines
358 B
PowerShell
Raw Normal View History

2021-11-29 16:03:58 +01:00
<#
.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