mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-12-23 23:29:02 +01:00
Rename to say-date.ps1 and say-time.ps1
This commit is contained in:
parent
27bd366394
commit
aa22515370
@ -194,6 +194,8 @@ remove-print-jobs.ps1, Removes all jobs from all printers
|
||||
remove-tag.ps1, Removes a tag in a Git repository
|
||||
replace-in-files.ps1, Search and replace a pattern in the given files by the replacement
|
||||
restart-network-adapters.ps1, Restarts all local network adapters
|
||||
say-date.ps1, Say the current date by text-to-speech
|
||||
say-time.ps1, Say the current time by text-to-speech
|
||||
search-filename.ps1, Searches the directory tree for filenames by given pattern
|
||||
search-files.ps1, Searches the given pattern in the given files
|
||||
scan-ports.ps1, Scans the network for open/closed ports
|
||||
@ -207,7 +209,6 @@ simulate-matrix.ps1, Simulates the Matrix (fun)
|
||||
simulate-presence.ps1, Simulates the human presence against burglars
|
||||
speak-checklist.ps1, Speaks the given checklist by text-to-speech (TTS)
|
||||
speak-countdown.ps1, Starts a countdown by text-to-speech (TTS)
|
||||
speak-date.ps1, Speaks the current date by text-to-speech (TTS)
|
||||
speak-english.ps1, Speaks the given text with an English text-to-speech (TTS) voice
|
||||
speak-epub.ps1, Speaks the content of the given Epub file by text-to-speech (TTS)
|
||||
speak-file.ps1, Speaks the content of the given text file by text-to-speech (TTS)
|
||||
@ -219,7 +220,6 @@ speak-quote.ps1, Speaks a random quote by text-to-speech (TTS)
|
||||
speak-spanish.ps1, Speaks the given text with a Spanish text-to-speech (TTS) voice
|
||||
speak-test.ps1, Performs a speak test by text-to-speech (TTS)
|
||||
speak-text.ps1, Speaks the given text by text-to-speech (TTS)
|
||||
speak-time.ps1, Speaks the current time by text-to-speech (TTS)
|
||||
start-calibre-server.ps1, Starts a local Calibre server
|
||||
start-ipfs-server.ps1, Starts a local IPFS server
|
||||
switch-branch.ps1, Switches the branch in the current/given Git repository (including submodules)
|
||||
|
Can't render this file because it has a wrong number of fields in line 90.
|
@ -22,9 +22,10 @@ Mega Collection of PowerShell Scripts
|
||||
| [play-mp3.ps1](Scripts/play-mp3.ps1) | Plays the given sound file (MP3 file format) | [Help](Docs/play-mp3.md) |
|
||||
| [play-super-mario.ps1](Scripts/play-super-mario.ps1) | Plays the Super Mario Intro | [Help](Docs/play-super-mario.md) |
|
||||
| [play-tetris-melody.ps1](Scripts/play-tetris-melody.ps1) | Plays the Tetris melody | [Help](Docs/play-tetris-melody.md) |
|
||||
| [say-date.ps1](Scripts/say-date.ps1) | Say the current date by text-to-speech | [Help](Docs/say-date.md) |
|
||||
| [say-time.ps1](Scripts/say-time.ps1) | Say the current time by text-to-speech | [Help](Docs/say-time.md) |
|
||||
| [speak-checklist.ps1](Scripts/speak-checklist.ps1) | Speaks the given checklist by text-to-speech | [Help](Docs/speak-checklist.md) |
|
||||
| [speak-countdown.ps1](Scripts/speak-countdown.ps1) | Starts a countdown by text-to-speech | [Help](Docs/speak-countdown.md) |
|
||||
| [speak-date.ps1](Scripts/speak-date.ps1) | Speaks the current date by text-to-speech | [Help](Docs/speak-date.md) |
|
||||
| [speak-english.ps1](Scripts/speak-english.ps1) | Speaks the given text with an English text-to-speech voice | [Help](Docs/speak-english.md) |
|
||||
| [speak-epub.ps1](Scripts/speak-epub.ps1) | Speaks the content of the given Epub file by text-to-speech | [Help](Docs/speak-epub.md) |
|
||||
| [speak-file.ps1](Scripts/speak-file.ps1) | Speaks the content of the given text file by text-to-speech | [Help](Docs/speak-file.md) |
|
||||
@ -36,7 +37,6 @@ Mega Collection of PowerShell Scripts
|
||||
| [speak-spanish.ps1](Scripts/speak-spanish.ps1) | Speaks the given text with a Spanish text-to-speech voice | [Help](Docs/speak-spanish.md) |
|
||||
| [speak-test.ps1](Scripts/speak-test.ps1) | Performs a speak test by text-to-speech | [Help](Docs/speak-test.md) |
|
||||
| [speak-text.ps1](Scripts/speak-text.ps1) | Speaks the given text by text-to-speech | [Help](Docs/speak-text.md) |
|
||||
| [speak-time.ps1](Scripts/speak-time.ps1) | Speaks the current time by text-to-speech | [Help](Docs/speak-time.md) |
|
||||
| [turn-volume-up.ps1](Scripts/turn-volume-up.ps1) | Turns the audio volume up (+10% by default) | [Help](Docs/turn-volume-up.md) |
|
||||
| [turn-volume-down.ps1](Scripts/turn-volume-down.ps1) | Turns the audio volume down (-10% by default) | [Help](Docs/turn-volume-down.md) |
|
||||
| [unmute-audio.ps1](Scripts/unmute-audio.ps1) | Unmutes the audio device | [Help](Docs/unmute-audio.md) |
|
||||
|
@ -1,10 +1,10 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Speaks the current date by text-to-speech (TTS)
|
||||
Say the current date by text-to-speech
|
||||
.DESCRIPTION
|
||||
speak-date.ps1
|
||||
This script speaks the current date by text-to-speech (TTS).
|
||||
.EXAMPLE
|
||||
PS> ./speak-date
|
||||
PS> ./say-date
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
@ -1,10 +1,10 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Speaks the current time by text-to-speech (TTS)
|
||||
Say the current time by text-to-speech
|
||||
.DESCRIPTION
|
||||
speak-time.ps1
|
||||
This script speaks the current time by text-to-speech (TTS).
|
||||
.EXAMPLE
|
||||
PS> ./speak-time
|
||||
PS> ./say-time
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
Loading…
Reference in New Issue
Block a user