Add show-euro-rate.ps1 and show-us-dollar-rate.ps1

This commit is contained in:
Markus Fleschutz 2021-12-07 07:22:39 +01:00
parent 8cb9e9a888
commit 9c405e1f6d
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Shows the Euro rate
.DESCRIPTION
This script launches the Web browser and shows the Euro (EUR/) rate.
.EXAMPLE
PS> ./show-euro-rate
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://www.bitstamp.net/markets/eur/usd/"
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Shows the US$ rate
.DESCRIPTION
This script launches the Web browser and shows the US Dollar (USD/US$) rate.
.EXAMPLE
PS> ./show-us-dollar-rate
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://www.bitstamp.net/markets/eur/usd"
exit 0 # success