Simple rename

This commit is contained in:
Markus Fleschutz 2021-12-11 12:32:03 +01:00
parent 3122902f0b
commit 1a94413a0e
7 changed files with 23 additions and 6 deletions

View File

@ -4,7 +4,7 @@
.DESCRIPTION
This script closes the Google Chrome Web browser gracefully.
.EXAMPLE
PS> ./close-chrome-browser
PS> ./close-chrome
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -4,7 +4,7 @@
.DESCRIPTION
This script closes the Microsoft Edge Web browser gracefully.
.EXAMPLE
PS> ./close-edge-browser
PS> ./close-edge
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -4,7 +4,7 @@
.DESCRIPTION
This script closes the Mozilla Firefox Web browser gracefully.
.EXAMPLE
PS> ./close-firefox-browser
PS> ./close-firefox
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -4,7 +4,7 @@
.DESCRIPTION
This script launches the Google Chrome Web browser.
.EXAMPLE
PS> ./open-chrome-browser
PS> ./open-chrome
.PARAMETER URL
Specifies an optional URL
.NOTES

View File

@ -4,7 +4,7 @@
.DESCRIPTION
This script launches the Microsoft Edge Web browser.
.EXAMPLE
PS> ./open-edge-browser
PS> ./open-edge
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -4,7 +4,7 @@
.DESCRIPTION
This script launches the Mozilla Firefox Web browser.
.EXAMPLE
PS> ./open-firefox-browser
PS> ./open-firefox
.PARAMETER URL
Specifies an URL
.NOTES

17
Scripts/spell-word.ps1 Normal file
View File

@ -0,0 +1,17 @@
<#
.SYNOPSIS
Spells a word
.DESCRIPTION
This script spells the given word by text-to-speech (TTS).
.EXAMPLE
PS> ./spell-word
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
$Reply = "T E S T"
& "$PSScriptRoot/give-reply.ps1" "$Reply"
exit 0 # success