Add some show-*-manual.ps1 scripts

This commit is contained in:
Markus Fleschutz
2021-11-29 16:03:58 +01:00
parent 8d6ea7ce5d
commit 9fceed788a
5 changed files with 70 additions and 10 deletions

15
Scripts/show-bash-manual.ps1 Executable file
View File

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

15
Scripts/show-blender-manual.ps1 Executable file
View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Shows the Blender manual
.DESCRIPTION
This script launches the Web browser with the Blender manual.
.EXAMPLE
PS> ./show-blender-manual
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://docs.blender.org/manual/en/latest/index.html"
exit 0 # success

15
Scripts/show-git-manual.ps1 Executable file
View File

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

15
Scripts/show-vim-manual.ps1 Executable file
View File

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