mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-22 16:03:22 +01:00
Simple rename
This commit is contained in:
parent
3122902f0b
commit
1a94413a0e
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
17
Scripts/spell-word.ps1
Normal 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
|
Loading…
Reference in New Issue
Block a user