mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-10 18:58:21 +02:00
Add open-github.ps1
This commit is contained in:
parent
c7aaf94f5a
commit
df8c9af191
@ -168,6 +168,7 @@ open-dropbox-folder.ps1, Opens the user's Dropbox folder
|
||||
open-email-client.ps1, Starts the default email client
|
||||
open-facebook.ps1, Opens Facebook's website
|
||||
open-file-explorer.ps1, Opens the File Explorer
|
||||
open-github.ps1, Opens GitHub's website
|
||||
open-google-contacts.ps1, Opens Google Contacts
|
||||
open-google-earth.ps1, Opens Google Earth
|
||||
open-google-maps.ps1, Opens Google Maps
|
||||
|
Can't render this file because it has a wrong number of fields in line 94.
|
@ -123,6 +123,7 @@ Mega Collection of PowerShell Scripts
|
||||
| [open-email-client.ps1](Scripts/open-browser.ps1) | Starts the default email client | [Help](Docs/open-email-client.md) |
|
||||
| [open-facebook.ps1](Scripts/open-facebook.ps1) | Opens Facebook's website | [Help](Docs/open-facebook.md) |
|
||||
| [open-file-explorer.ps1](Scripts/open-file-explorer.ps1) | Opens the File Explorer | [Help](Docs/open-file-explorer.md) |
|
||||
| [open-github.ps1](Scripts/open-github.ps1) | Opens GitHub's website | [Help](Docs/open-github.md) |
|
||||
| [open-google-contacts.ps1](Scripts/open-google-contacts.ps1) | Opens Google Contacts | [Help](Docs/open-google-contacts.md) |
|
||||
| [open-google-earth.ps1](Scripts/open-google-earth.ps1) | Opens Google Earth | [Help](Docs/open-google-earth.md) |
|
||||
| [open-google-maps.ps1](Scripts/open-google-maps.ps1) | Opens Google Maps | [Help](Docs/open-google-maps.md) |
|
||||
|
15
Scripts/open-github.ps1
Normal file
15
Scripts/open-github.ps1
Normal file
@ -0,0 +1,15 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Opens GitHub's website
|
||||
.DESCRIPTION
|
||||
This script starts the Web browser with GitHub's website.
|
||||
.EXAMPLE
|
||||
PS> ./open-github
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-browser.ps1" "https://github.com"
|
||||
exit 0 # success
|
Loading…
Reference in New Issue
Block a user