mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-05 06:48:25 +02:00
Updated the description
This commit is contained in:
parent
4bd0f442f2
commit
20f08293c4
@ -26,7 +26,7 @@ display-time.ps1, displays the current time for 10 seconds by default
|
|||||||
download.ps1, downloads the file/directory from the given URL
|
download.ps1, downloads the file/directory from the given URL
|
||||||
enable-crash-dumps.ps1, enables the writing of crash dumps
|
enable-crash-dumps.ps1, enables the writing of crash dumps
|
||||||
encrypt-file.ps1, encrypts the given file
|
encrypt-file.ps1, encrypts the given file
|
||||||
fetch-repos.ps1, fetches all Git repositories under the current/given directory
|
fetch-repos.ps1, fetches all Git repositories under the current/given directory (including submodules)
|
||||||
generate-qrcode.ps1, generates a QR code
|
generate-qrcode.ps1, generates a QR code
|
||||||
hibernate.ps1, enables hibernate mode for the local computer (requires admin rights)
|
hibernate.ps1, enables hibernate mode for the local computer (requires admin rights)
|
||||||
inspect-exe.ps1, prints basic information of the given executable file
|
inspect-exe.ps1, prints basic information of the given executable file
|
||||||
@ -101,7 +101,7 @@ speak-joke.ps1, speaks the next joke by text-to-speech (TTS)
|
|||||||
speak-test.ps1, performs a speak test by text-to-speech (TTS)
|
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-text.ps1, speaks the given text by text-to-speech (TTS)
|
||||||
speak-time.ps1, speaks the current time by text-to-speech (TTS)
|
speak-time.ps1, speaks the current time by text-to-speech (TTS)
|
||||||
switch-branch.ps1, switches the current Git repository to the given branch
|
switch-branch.ps1, switches the current Git repository to the given branch (including submodules)
|
||||||
switch-shelly1.ps1, switches a Shelly1 device in the local network
|
switch-shelly1.ps1, switches a Shelly1 device in the local network
|
||||||
take-screenshot.ps1, takes a single screenshot
|
take-screenshot.ps1, takes a single screenshot
|
||||||
take-screenshots.ps1, takes multiple screenshots
|
take-screenshots.ps1, takes multiple screenshots
|
||||||
@ -112,7 +112,7 @@ turn-volume-up.ps1, turns the audio volume up (+10% by default)
|
|||||||
turn-volume-down.ps1, turns the audio volume down (-10% by default)
|
turn-volume-down.ps1, turns the audio volume down (-10% by default)
|
||||||
txt2wav.ps1, converts text into a audio .WAV file
|
txt2wav.ps1, converts text into a audio .WAV file
|
||||||
unmute-audio.ps1, unmutes audio
|
unmute-audio.ps1, unmutes audio
|
||||||
update-repos.ps1, updates all Git repositories under the current/given directory
|
update-repos.ps1, updates all Git repositories under the current/given directory (including submodules)
|
||||||
voice-control.ps1, executes the PowerShell scripts by voice
|
voice-control.ps1, executes the PowerShell scripts by voice
|
||||||
weather.ps1, prints the current weather forecast
|
weather.ps1, prints the current weather forecast
|
||||||
weather-alert.ps1, checks the current weather for critical values
|
weather-alert.ps1, checks the current weather for critical values
|
||||||
|
|
@ -53,9 +53,9 @@ Scripts for Git
|
|||||||
* [clean-branch.ps1](Scripts/clean-branch.ps1) - cleans the current Git branch (including submodules) from generated files
|
* [clean-branch.ps1](Scripts/clean-branch.ps1) - cleans the current Git branch (including submodules) from generated files
|
||||||
* [clone-repos.ps1](Scripts/clone-repos.ps1) - clones well-known Git repositories
|
* [clone-repos.ps1](Scripts/clone-repos.ps1) - clones well-known Git repositories
|
||||||
* [configure-git.ps1](Scripts/configure-git.ps1) - sets up the Git user configuration
|
* [configure-git.ps1](Scripts/configure-git.ps1) - sets up the Git user configuration
|
||||||
* [fetch-repos.ps1](Scripts/fetch-repos.ps1) - fetches all Git repositories under the current/given directory
|
* [fetch-repos.ps1](Scripts/fetch-repos.ps1) - fetches all Git repositories under the current/given directory (including submodules)
|
||||||
* [switch-branch.ps1](Scripts/switch-branch.ps1) - switches the current Git repository to the given branch
|
* [switch-branch.ps1](Scripts/switch-branch.ps1) - switches the current Git repository to the given branch (including submodules)
|
||||||
* [update-repos.ps1](Scripts/update-repos.ps1) - updates all Git repositories under the current/given directory
|
* [update-repos.ps1](Scripts/update-repos.ps1) - updates all Git repositories under the current/given directory (including submodules)
|
||||||
|
|
||||||
Scripts for Files & Folders
|
Scripts for Files & Folders
|
||||||
---------------------------
|
---------------------------
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#!/bin/powershell
|
#!/bin/powershell
|
||||||
<#
|
<#
|
||||||
.SYNTAX ./fetch-repos.ps1 [<directory>]
|
.SYNTAX ./fetch-repos.ps1 [<directory>]
|
||||||
.DESCRIPTION fetches all Git repositories under the current/given directory
|
.DESCRIPTION fetches all Git repositories under the current/given directory (including submodules)
|
||||||
.LINK https://github.com/fleschutz/PowerShell
|
.LINK https://github.com/fleschutz/PowerShell
|
||||||
.NOTES Author: Markus Fleschutz / License: CC0
|
.NOTES Author: Markus Fleschutz / License: CC0
|
||||||
#>
|
#>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#!/bin/powershell
|
#!/bin/powershell
|
||||||
<#
|
<#
|
||||||
.SYNTAX ./switch-branch.ps1 [<branch>]
|
.SYNTAX ./switch-branch.ps1 [<branch>]
|
||||||
.DESCRIPTION switches the current Git repository to the given branch
|
.DESCRIPTION switches the current Git repository to the given branch (including submodules)
|
||||||
.LINK https://github.com/fleschutz/PowerShell
|
.LINK https://github.com/fleschutz/PowerShell
|
||||||
.NOTES Author: Markus Fleschutz / License: CC0
|
.NOTES Author: Markus Fleschutz / License: CC0
|
||||||
#>
|
#>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#!/bin/powershell
|
#!/bin/powershell
|
||||||
<#
|
<#
|
||||||
.SYNTAX ./update-repos.ps1 [<directory>]
|
.SYNTAX ./update-repos.ps1 [<directory>]
|
||||||
.DESCRIPTION updates all Git repositories under the current/given directory
|
.DESCRIPTION updates all Git repositories under the current/given directory (including submodules)
|
||||||
.LINK https://github.com/fleschutz/PowerShell
|
.LINK https://github.com/fleschutz/PowerShell
|
||||||
.NOTES Author: Markus Fleschutz / License: CC0
|
.NOTES Author: Markus Fleschutz / License: CC0
|
||||||
#>
|
#>
|
||||||
|
Loading…
Reference in New Issue
Block a user