mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-08 20:54:38 +02:00
Add some show-*-manual.ps1 scripts
This commit is contained in:
15
Scripts/show-gcc-manual.ps1
Normal file
15
Scripts/show-gcc-manual.ps1
Normal 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
|
15
Scripts/show-gdb-manual.ps1
Normal file
15
Scripts/show-gdb-manual.ps1
Normal 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
|
15
Scripts/show-jenkins-manual.ps1
Normal file
15
Scripts/show-jenkins-manual.ps1
Normal 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
|
Reference in New Issue
Block a user