Add several scripts

This commit is contained in:
Markus Fleschutz 2021-10-29 13:18:32 +02:00
parent dd9f3592a4
commit abb40a9566
5 changed files with 75 additions and 0 deletions

15
Scripts/open-google-books.ps1 Executable file
View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens Google Books
.DESCRIPTION
This script launches the Web browser with the Google Books website.
.EXAMPLE
PS> ./open-google-books
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-browser.ps1" "https://books.google.com"
exit 0 # success

15
Scripts/open-google-docs.ps1 Executable file
View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens Google Docs
.DESCRIPTION
This script launches the Web browser with the Google Docs website.
.EXAMPLE
PS> ./open-google-docs
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-browser.ps1" "https://docs.google.com"
exit 0 # success

15
Scripts/open-google-photos.ps1 Executable file
View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens Google Photos
.DESCRIPTION
This script launches the Web browser with the Google Photos website.
.EXAMPLE
PS> ./open-google-photos
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-browser.ps1" "https://photos.google.com"
exit 0 # success

15
Scripts/open-google-stadia.ps1 Executable file
View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens Google Stadia
.DESCRIPTION
This script launches the Web browser with the Google Stadia website.
.EXAMPLE
PS> ./open-google-stadia
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-browser.ps1" "https://stadia.google.com"
exit 0 # success

15
Scripts/open-stack-overflow.ps1 Executable file
View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens the Stack Overflow website
.DESCRIPTION
This script launches the Web browser with the Stack Overflow website.
.EXAMPLE
PS> ./open-stack-overflow
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-browser.ps1" "https://stackoverflow.com"
exit 0 # success