diff --git a/Scripts/show-euro-rate.ps1 b/Scripts/show-euro-rate.ps1 new file mode 100644 index 00000000..5b01442e --- /dev/null +++ b/Scripts/show-euro-rate.ps1 @@ -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 diff --git a/Scripts/show-us-dollar-rate.ps1 b/Scripts/show-us-dollar-rate.ps1 new file mode 100644 index 00000000..582d649a --- /dev/null +++ b/Scripts/show-us-dollar-rate.ps1 @@ -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