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

16 lines
336 B
PowerShell

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