<# .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