mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-07-01 05:00:06 +02:00
Add some show-*-manual.ps1 scripts
This commit is contained in:
15
Scripts/show-bash-manual.ps1
Executable file
15
Scripts/show-bash-manual.ps1
Executable 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
15
Scripts/show-blender-manual.ps1
Executable 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
15
Scripts/show-git-manual.ps1
Executable 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
15
Scripts/show-vim-manual.ps1
Executable 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
|
Reference in New Issue
Block a user