mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-09 13:04:59 +02:00
Add unicode character
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
#!/usr/bin/pwsh
|
||||
#!/usr/bin/pwsh
|
||||
<#
|
||||
.SYNTAX open-browser.ps1 [<URL>]
|
||||
.DESCRIPTION starts the default Web browser, optional with given URL
|
||||
@ -6,11 +6,7 @@
|
||||
.NOTES Author: Markus Fleschutz / License: CC0
|
||||
#>
|
||||
|
||||
param($URL = "")
|
||||
|
||||
if ($URL -eq "" ) {
|
||||
$URL = "http://www.fleschutz.de"
|
||||
}
|
||||
param($URL = "http://www.fleschutz.de")
|
||||
|
||||
try {
|
||||
Start-Process $URL
|
||||
|
Reference in New Issue
Block a user