diff --git a/Scripts/open-baidu.ps1 b/Scripts/open-baidu.ps1 new file mode 100755 index 00000000..7b63d20f --- /dev/null +++ b/Scripts/open-baidu.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens the Baidu website +.DESCRIPTION + This script launches the Web browser with the Baidu website. +.EXAMPLE + PS> ./open-baidu +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.baidu.com" +exit 0 # success diff --git a/Scripts/open-instagram.ps1 b/Scripts/open-instagram.ps1 new file mode 100755 index 00000000..0285bd8a --- /dev/null +++ b/Scripts/open-instagram.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens the Instagram website +.DESCRIPTION + This script launches the Web browser with the Instagram website. +.EXAMPLE + PS> ./open-instagram +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.instagram.com" +exit 0 # success diff --git a/Scripts/open-yahoo.ps1 b/Scripts/open-yahoo.ps1 new file mode 100755 index 00000000..72136ffe --- /dev/null +++ b/Scripts/open-yahoo.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens the Yahoo website +.DESCRIPTION + This script launches the Web browser with the Yahoo website. +.EXAMPLE + PS> ./open-yahoo +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.yahoo.com" +exit 0 # success