Add some show-*-manual.ps1 scripts

This commit is contained in:
Markus Fleschutz
2021-12-04 16:16:08 +01:00
parent 38f4bb9d95
commit e7588e7b8c
4 changed files with 46 additions and 1 deletions

View File

@ -0,0 +1,15 @@
<#
.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

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Shows the GDB manual
.DESCRIPTION
This script launches the Web browser with the GDB manual.
.EXAMPLE
PS> ./show-gdb-manual
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://www.gnu.org/software/gdb/documentation/"
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.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