PowerShell/Scripts/show-euro-rate.ps1

16 lines
359 B
PowerShell
Raw Normal View History

<#
.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