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

@ -83,7 +83,7 @@ Lets the computer check something, replace [name] by: `CPU`, `date`, `DNS`, `dri
`Computer, show` [name] `manual`
--------------------------------
* launches the default Web browser with the given online manual - replace [name] by: `Apple`, `Audacity`, `Azure`, `Bash`, `Blender`, `Chrome`, `Edge`, `Firefox`, `Git`, `OBS Studio`, `PowerShell`, `Serenade`, `SystemRescue`, `Toyota`, `Vim`, `Voice` *(yes, this page!)*, `Volkswagen`, or `Windows`.
* launches the default Web browser with the given online manual - replace [name] by: `Apple`, `Audacity`, `Azure`, `Bash`, `Blender`, `Chrome`, `Edge`, `Firefox`, `GCC`, `Git`, `Jenkins`, `OBS Studio`, `PowerShell`, `Serenade`, `SystemRescue`, `Toyota`, `Vim`, `Voice` *(yes, this page!)*, `Volkswagen`, or `Windows`.
* when finished say: "Close tab" or: "Computer, close [name] browser" to close the Web browser.

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