Add unicode character

This commit is contained in:
Markus Fleschutz
2021-04-17 18:13:23 +02:00
parent 76e6cc1118
commit 370fe6c7dc
10 changed files with 17 additions and 23 deletions

View File

@ -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