mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-03-24 21:16:54 +01:00
Add show-euro-rate.ps1 and show-us-dollar-rate.ps1
This commit is contained in:
parent
8cb9e9a888
commit
9c405e1f6d
15
Scripts/show-euro-rate.ps1
Normal file
15
Scripts/show-euro-rate.ps1
Normal 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
|
15
Scripts/show-us-dollar-rate.ps1
Normal file
15
Scripts/show-us-dollar-rate.ps1
Normal 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
|
Loading…
Reference in New Issue
Block a user