mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-23 00:13:36 +01:00
Add some show-*-manual.ps1 scripts
This commit is contained in:
parent
38f4bb9d95
commit
e7588e7b8c
@ -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.
|
||||
|
||||
|
||||
|
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
|
Loading…
Reference in New Issue
Block a user