diff --git a/Scripts/reboot-fritzbox.ps1 b/Scripts/reboot-fritzbox.ps1 index 5842a2fe..ba5ffc3e 100755 --- a/Scripts/reboot-fritzbox.ps1 +++ b/Scripts/reboot-fritzbox.ps1 @@ -2,17 +2,17 @@ .SYNOPSIS Reboots the FRITZ!Box device .DESCRIPTION - This script reboots the FRITZ!Box device + This PowerShell script reboots the FRITZ!Box device .PARAMETER Username Specifies the user name .PARAMETER Password Specifies the password .EXAMPLE PS> ./reboot-fritzbox -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$Username = "", [string]$Password = "") diff --git a/Scripts/reboot.ps1 b/Scripts/reboot.ps1 index da72a8b7..5ab79415 100755 --- a/Scripts/reboot.ps1 +++ b/Scripts/reboot.ps1 @@ -2,13 +2,13 @@ .SYNOPSIS Reboots the local computer (needs admin rights) .DESCRIPTION - This script reboots the local computer (needs admin rights). + This PowerShell script reboots the local computer (needs admin rights). .EXAMPLE PS> ./reboot -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> #Requires -RunAsAdministrator diff --git a/Scripts/remind-me.ps1 b/Scripts/remind-me.ps1 index 858104fa..33417a99 100755 --- a/Scripts/remind-me.ps1 +++ b/Scripts/remind-me.ps1 @@ -2,17 +2,17 @@ .SYNOPSIS Creates a scheduled task that will display a popup message .DESCRIPTION - This script creates a scheduled task that will display a popup message. + This PowerShell script creates a scheduled task that will display a popup message. .EXAMPLE PS> ./remind-me "Dentist" "4/10/2021 12:00 PM" TaskPath TaskName State -------- -------- ----- \ Reminder_451733811 Ready -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> #requires -version 4 diff --git a/Scripts/remove-empty-dirs.ps1 b/Scripts/remove-empty-dirs.ps1 index fc194fad..f1e0e8ba 100755 --- a/Scripts/remove-empty-dirs.ps1 +++ b/Scripts/remove-empty-dirs.ps1 @@ -2,15 +2,15 @@ .SYNOPSIS Removes all empty subfolders within a directory tree .DESCRIPTION - This script removes all empty subfolders within a directory tree. + This PowerShell script removes all empty subfolders within a directory tree. .PARAMETER DirTree Specifies the path to the directory tree .EXAMPLE PS> ./remove-empty-dirs C:\Temp -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$DirTree = "") diff --git a/Scripts/remove-print-jobs.ps1 b/Scripts/remove-print-jobs.ps1 index 386c9835..1f439632 100755 --- a/Scripts/remove-print-jobs.ps1 +++ b/Scripts/remove-print-jobs.ps1 @@ -2,13 +2,13 @@ .SYNOPSIS Removes all jobs from all printers .DESCRIPTION - This script removes all print jobs from all printer devices. + This PowerShell script removes all print jobs from all printer devices. .EXAMPLE PS> ./remove-print-jobs -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> #Requires -Version 4 diff --git a/Scripts/remove-tag.ps1 b/Scripts/remove-tag.ps1 index d131d8a7..76fdbdb3 100755 --- a/Scripts/remove-tag.ps1 +++ b/Scripts/remove-tag.ps1 @@ -2,7 +2,7 @@ .SYNOPSIS Removes a Git tag (locally, remote, or both) .DESCRIPTION - This script removes a Git tag, either locally, remote, or both. + This PowerShell script removes a Git tag, either locally, remote, or both. .PARAMETER TagName Specifies the Git tag name .PARAMETER Mode @@ -14,7 +14,7 @@ .LINK https://github.com/fleschutz/PowerShell .NOTES - Author: Markus Fleschutz · License: CC0 + Author: Markus Fleschutz / License: CC0 #> param([string]$TagName = "", [string]$Mode = "", [string]$RepoDir = "$PWD") diff --git a/Scripts/repeat-last-reply.ps1 b/Scripts/repeat-last-reply.ps1 index 7df07eb0..84d254a8 100644 --- a/Scripts/repeat-last-reply.ps1 +++ b/Scripts/repeat-last-reply.ps1 @@ -2,13 +2,13 @@ .SYNOPSIS Repeats the last reply .DESCRIPTION - This repeats the last reply by text-to-speech (TTS). + This PowerShell script repeats the last reply by text-to-speech (TTS). .EXAMPLE PS> ./repeat-last-reply -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> function GetTempDir { diff --git a/Scripts/replace-in-files.ps1 b/Scripts/replace-in-files.ps1 index 494a2a3b..ab37504c 100644 --- a/Scripts/replace-in-files.ps1 +++ b/Scripts/replace-in-files.ps1 @@ -2,7 +2,7 @@ .SYNOPSIS Search and replace a pattern in the given files by the replacement .DESCRIPTION - This script searches and replaces a pattern in the given files by the replacement. + This PowerShell script searches and replaces a pattern in the given files by the replacement. .PARAMETER pattern Specifies the pattern to look for .PARAMETER replacement @@ -11,10 +11,10 @@ Specifies the file to scan .EXAMPLE PS> ./replace-in-files NSA "No Such Agency" C:\Temp\*.txt -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$pattern = "", [string]$replacement = "", [string]$files = "") diff --git a/Scripts/restart-network-adapters.ps1 b/Scripts/restart-network-adapters.ps1 index ae667e80..507b7b1d 100644 --- a/Scripts/restart-network-adapters.ps1 +++ b/Scripts/restart-network-adapters.ps1 @@ -5,10 +5,10 @@ This PowerShell script restarts all local network adapters (needs admin rights). .EXAMPLE PS> ./restart-network-adapters -.NOTES - Author: Markus Fleschutz / License: CC0 .LINK htts://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> #Requires -RunAsAdministrator diff --git a/Scripts/roll-a-dice.ps1 b/Scripts/roll-a-dice.ps1 index 66c9831f..e6af4fc9 100644 --- a/Scripts/roll-a-dice.ps1 +++ b/Scripts/roll-a-dice.ps1 @@ -2,13 +2,13 @@ .SYNOPSIS Replies to "Roll a dice" .DESCRIPTION - This script rolls a dice and returns the number by text-to-speech (TTS). + This PowerShell script rolls a dice and returns the number by text-to-speech (TTS). .EXAMPLE PS> ./roll-a-dice -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> $Reply = "It's", "I get", "Now it's", "OK, I have" | Get-Random diff --git a/Scripts/save-screenshot.ps1 b/Scripts/save-screenshot.ps1 index dcc000fb..fc49be82 100755 --- a/Scripts/save-screenshot.ps1 +++ b/Scripts/save-screenshot.ps1 @@ -2,16 +2,16 @@ .SYNOPSIS Saves a single screenshot .DESCRIPTION - This script takes a single screenshot and saves it into a target folder (the user's pictures folder by default). + This PowerShell script takes a single screenshot and saves it into a target folder (the user's pictures folder by default). .PARAMETER TargetFolder Specifies the target folder (the user's pictures folder by default) .EXAMPLE PS> ./save-screenshot ✔️ screenshot saved to C:\Users\Markus\Pictures\2021-10-10T14-33-22.png -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$TargetFolder = "$HOME/Pictures") diff --git a/Scripts/scan-ports.ps1 b/Scripts/scan-ports.ps1 index 61c54148..5dc65b99 100755 --- a/Scripts/scan-ports.ps1 +++ b/Scripts/scan-ports.ps1 @@ -2,13 +2,13 @@ .SYNOPSIS Scans the network for open/closed ports .DESCRIPTION - This script scans the network for open or closed ports + This PowerShell script scans the network for open or closed ports. .EXAMPLE PS> ./scan-ports -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> $network = "192.168.178" diff --git a/Scripts/search-filename.ps1 b/Scripts/search-filename.ps1 index d04e04c6..7d749f1d 100755 --- a/Scripts/search-filename.ps1 +++ b/Scripts/search-filename.ps1 @@ -2,7 +2,7 @@ .SYNOPSIS Lists all files and folder names matching a search pattern .DESCRIPTION - This script serves as a quick Powershell replacement to the search functionality in Windows + This PowerShell script serves as a quick Powershell replacement to the search functionality in Windows After you pass in a root folder and a search term, the script will list all files and folders matching that phrase. .PARAMETER path Specifies the path @@ -10,10 +10,10 @@ Specifies the search term .EXAMPLE PS> ./search-filename -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param( diff --git a/Scripts/search-files.ps1 b/Scripts/search-files.ps1 index 28711efd..df2095ce 100755 --- a/Scripts/search-files.ps1 +++ b/Scripts/search-files.ps1 @@ -2,17 +2,17 @@ .SYNOPSIS Searches for a pattern in files .DESCRIPTION - This script searches for a pattern in the given files. + This PowerShell script searches for a pattern in the given files. .PARAMETER pattern Specifies the search pattern .PARAMETER files Specifies the files .EXAMPLE PS> ./search-files UFO C:\Temp\*.txt -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$pattern = "", [string]$files = "") diff --git a/Scripts/see-you-later.ps1 b/Scripts/see-you-later.ps1 index e7e5057d..7e0c8255 100644 --- a/Scripts/see-you-later.ps1 +++ b/Scripts/see-you-later.ps1 @@ -2,13 +2,13 @@ .SYNOPSIS Answers to 'see you later' .DESCRIPTION - This script says a reply to "see you later" by text-to-speech (TTS). + This PowerShell script says a reply to "see you later" by text-to-speech (TTS). .EXAMPLE PS> ./see-you-later -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> $Reply = "Good bye.", "See you.", "Bye bye." | Get-Random diff --git a/Scripts/send-email.ps1 b/Scripts/send-email.ps1 index 125767a9..81317263 100755 --- a/Scripts/send-email.ps1 +++ b/Scripts/send-email.ps1 @@ -2,13 +2,13 @@ .SYNOPSIS Sends an email message .DESCRIPTION - This script sends an email message. + This PowerShell script sends an email message. .EXAMPLE PS> ./send-email -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> $smtpServer = "smtp.example.com" diff --git a/Scripts/send-tcp.ps1 b/Scripts/send-tcp.ps1 index a9900aba..c7623ac8 100755 --- a/Scripts/send-tcp.ps1 +++ b/Scripts/send-tcp.ps1 @@ -2,7 +2,7 @@ .SYNOPSIS Sends a TCP message to an IP address and port .DESCRIPTION - This script sends a TCP message to the given IP address and port. + This PowerShell script sends a TCP message to the given IP address and port. .PARAMETER TargetIP Specifies the target IP address .PARAMETER TargetPort @@ -11,10 +11,10 @@ Specifies the message to send .EXAMPLE PS> ./send-tcp 192.168.100.100 8080 "TEST" -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$TargetIP = "", [int]$TargetPort = 0, [string]$Message = "") diff --git a/Scripts/send-udp.ps1 b/Scripts/send-udp.ps1 index 8b488ff9..772591b4 100755 --- a/Scripts/send-udp.ps1 +++ b/Scripts/send-udp.ps1 @@ -2,7 +2,7 @@ .SYNOPSIS Sends a UDP datagram message to an IP address and port .DESCRIPTION - This script sends a UDP datagram message to an IP address and port. + This PowerShell script sends a UDP datagram message to an IP address and port. .PARAMETER TargetIP Specifies the target IP address .PARAMETER TargetPort @@ -12,10 +12,10 @@ .EXAMPLE PS> ./send-udp 192.168.100.100 8080 "TEST" ✔️ Done. -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$TargetIP = "", [int]$TargetPort = 0, $[string]Message = "") diff --git a/Scripts/set-profile.ps1 b/Scripts/set-profile.ps1 index 7a1fb752..a65c5740 100755 --- a/Scripts/set-profile.ps1 +++ b/Scripts/set-profile.ps1 @@ -2,13 +2,13 @@ .SYNOPSIS Sets the PowerShell profile for the current user .DESCRIPTION - This script sets the PowerShell profile for the current user. + This PowerShell script sets the PowerShell profile for the current user. .EXAMPLE PS> ./set-profile -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> try { diff --git a/Scripts/set-timer.ps1 b/Scripts/set-timer.ps1 index 961a09d0..bb2924cf 100755 --- a/Scripts/set-timer.ps1 +++ b/Scripts/set-timer.ps1 @@ -2,15 +2,15 @@ .SYNOPSIS Sets a timer for a countdown .DESCRIPTION - This script sets a timer for a countdown. + This PowerShell script sets a timer for a countdown. .PARAMETER Seconds Specifies the number of seconds .EXAMPLE PS> ./set-timer 60 -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([int]$Seconds = 0) diff --git a/Scripts/set-wallpaper.ps1 b/Scripts/set-wallpaper.ps1 index 148bad98..6cfe54ab 100755 --- a/Scripts/set-wallpaper.ps1 +++ b/Scripts/set-wallpaper.ps1 @@ -2,17 +2,17 @@ .SYNOPSIS Sets the given image file as desktop wallpaper .DESCRIPTION - Sets the given image file as desktop wallpaper (.JPG or .PNG supported) + This PowerShell script sets the given image file as desktop wallpaper (.JPG or .PNG supported) .PARAMETER ImageFile Specifies the path to the image file .PARAMETER Style Specifies either Fill, Fit, Stretch, Tile, Center, or Span (default) .EXAMPLE PS> ./set-wallpaper C:\ocean.jpg -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$ImageFile = "", [string]$Style = "Span") diff --git a/Scripts/show-lightnings.ps1 b/Scripts/show-lightnings.ps1 index b68f8815..3ec68b38 100644 --- a/Scripts/show-lightnings.ps1 +++ b/Scripts/show-lightnings.ps1 @@ -2,13 +2,13 @@ .SYNOPSIS Shows Lightnings in OpenStreetMap .DESCRIPTION - This script launches the Web browser and shows Lightnings in OpenStreetMap. + This PowerShell script launches the Web browser and shows lightnings in OpenStreetMap. .EXAMPLE PS> ./show-lightnings -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> & "$PSScriptRoot/open-default-browser.ps1" "https://www.lightningmaps.org" diff --git a/Scripts/show-traffic.ps1 b/Scripts/show-traffic.ps1 index 88a4a245..cace38c0 100644 --- a/Scripts/show-traffic.ps1 +++ b/Scripts/show-traffic.ps1 @@ -2,13 +2,13 @@ .SYNOPSIS Shows the current traffic .DESCRIPTION - This script launches the Web browser with MSN showing the current traffic. + This PowerShell script launches the Web browser with MSN showing the current traffic. .EXAMPLE PS> ./show-traffic -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> & "$PSScriptRoot/open-default-browser.ps1" "https://www.msn.com/en-us/traffic?lvl=11&intent=roadClosures" diff --git a/Scripts/simulate-matrix.ps1 b/Scripts/simulate-matrix.ps1 index c6e111d1..60001959 100755 --- a/Scripts/simulate-matrix.ps1 +++ b/Scripts/simulate-matrix.ps1 @@ -2,13 +2,13 @@ .SYNOPSIS Simulates the Matrix (fun) .DESCRIPTION - This script simulates the Matrix (for fun). + This PowerShell script simulates the Matrix (for fun). .EXAMPLE PS> ./simulate-matrix -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> try { diff --git a/Scripts/simulate-presence.ps1 b/Scripts/simulate-presence.ps1 index d7edd425..69f12fed 100755 --- a/Scripts/simulate-presence.ps1 +++ b/Scripts/simulate-presence.ps1 @@ -2,13 +2,13 @@ .SYNOPSIS Simulates the human presence against burglars .DESCRIPTION - This script simulates the human presence against burglars. + This PowerShell script simulates the human presence against burglars. .PARAMETER IPaddress Specifies the IP address of the Shelly1 device .EXAMPLE PS> ./simulate-presence 192.168.100.100 .NOTES - Author: Markus Fleschutz · License: CC0 + Author: Markus Fleschutz / License: CC0 .LINK https://github.com/fleschutz/PowerShell #> diff --git a/Scripts/smart-data2csv.ps1 b/Scripts/smart-data2csv.ps1 index 637c2bb9..790f592a 100755 --- a/Scripts/smart-data2csv.ps1 +++ b/Scripts/smart-data2csv.ps1 @@ -2,16 +2,16 @@ .SYNOPSIS Converts the S.M.A.R.T. JSON files in a folder to a CSV table for analysis .DESCRIPTION - Converts the S.M.A.R.T. JSON files in the current/given directory to a CSV table for analysis - (use query-smart-data.ps1 to generate those JSON files). + This PowerShell script converts the S.M.A.R.T. JSON files in the current/given directory + to a CSV table for analysis (use query-smart-data.ps1 to generate those JSON files). .PARAMETER Directory Specifies the path to the directory .EXAMPLE PS> ./smart-data2csv -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$Directory = "") diff --git a/Scripts/speak-checklist.ps1 b/Scripts/speak-checklist.ps1 index b7e6f02b..14667cb0 100755 --- a/Scripts/speak-checklist.ps1 +++ b/Scripts/speak-checklist.ps1 @@ -2,15 +2,15 @@ .SYNOPSIS Speaks a checklist by text-to-speech .DESCRIPTION - This script speaks the given checklist by text-to-speech (TTS). + This PowerShell script speaks the given checklist by text-to-speech (TTS). .PARAMETER Name Specifies the name of the checklist .EXAMPLE PS> ./speak-checklist -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$Name = "") diff --git a/Scripts/speak-countdown.ps1 b/Scripts/speak-countdown.ps1 index b199ff01..3545eb65 100755 --- a/Scripts/speak-countdown.ps1 +++ b/Scripts/speak-countdown.ps1 @@ -2,15 +2,15 @@ .SYNOPSIS Speaks a countdown by text-to-speech .DESCRIPTION - This scripts speaks a countdown starting from a given number (10 by default) by text-to-speech (TTS). + This PowerShell script speaks a countdown starting from a given number (10 by default) by text-to-speech (TTS). .PARAMETER StartNumber Specifies the number to start from .EXAMPLE PS> ./speak-countdown 60 -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([int]$StartNumber = 10) diff --git a/Scripts/speak-english.ps1 b/Scripts/speak-english.ps1 index d0e5bfb4..bd75c892 100755 --- a/Scripts/speak-english.ps1 +++ b/Scripts/speak-english.ps1 @@ -2,15 +2,15 @@ .SYNOPSIS Speaks text with an English text-to-speech voice .DESCRIPTION - This scripts speaks the given text with an English text-to-speech (TTS) voice. + This PowerShell scripts speaks the given text with an English text-to-speech (TTS) voice. .PARAMETER text Specifies the text to speak .EXAMPLE PS> ./speak-english "Hello World" -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$text = "") diff --git a/Scripts/speak-epub.ps1 b/Scripts/speak-epub.ps1 index aaf72faf..1b6c1b96 100755 --- a/Scripts/speak-epub.ps1 +++ b/Scripts/speak-epub.ps1 @@ -2,15 +2,15 @@ .SYNOPSIS Speaks the content of the given Epub file by text-to-speech (TTS). .DESCRIPTION - This script speaks the content of the given Epub file by text-to-speech (TTS). + This PowerShell script speaks the content of the given Epub file by text-to-speech (TTS). .PARAMETER Filename Specifies the path to the Epub file .EXAMPLE PS> ./speak-epub C:\MyBook.epub -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$Filename = "") diff --git a/Scripts/speak-file.ps1 b/Scripts/speak-file.ps1 index 7372568b..ceb85732 100755 --- a/Scripts/speak-file.ps1 +++ b/Scripts/speak-file.ps1 @@ -2,15 +2,15 @@ .SYNOPSIS Speaks file content by text-to-speech .DESCRIPTION - This script speaks the content of the given text file by text-to-speech (TTS). + This PowerShell script speaks the content of the given text file by text-to-speech (TTS). .PARAMETER File Specifies the path to the text file .EXAMPLE PS> ./speak-file C:\MyFile.txt -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$File = "") diff --git a/Scripts/speak-french.ps1 b/Scripts/speak-french.ps1 index 38374cd8..81d595da 100644 --- a/Scripts/speak-french.ps1 +++ b/Scripts/speak-french.ps1 @@ -2,15 +2,15 @@ .SYNOPSIS Speaks text with a French text-to-speech voice .DESCRIPTION - This script speaks the given text with a French text-to-speech (TTS) voice. + This PowerShell script speaks the given text with a French text-to-speech (TTS) voice. .PARAMETER text Specifies the text to speak .EXAMPLE PS> ./speak-french Salut -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$text = "") diff --git a/Scripts/speak-german.ps1 b/Scripts/speak-german.ps1 index 68fe7107..b24b7484 100755 --- a/Scripts/speak-german.ps1 +++ b/Scripts/speak-german.ps1 @@ -2,15 +2,15 @@ .SYNOPSIS Speaks text with a German text-to-speech voice .DESCRIPTION - This script speaks the given text with a German text-to-speech (TTS) voice. + This PowerShell script speaks the given text with a German text-to-speech (TTS) voice. .PARAMETER text Specifies the text to speak .EXAMPLE PS> ./speak-german Hallo -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$text = "") diff --git a/Scripts/speak-italian.ps1 b/Scripts/speak-italian.ps1 index a63bd0b3..b21b890f 100755 --- a/Scripts/speak-italian.ps1 +++ b/Scripts/speak-italian.ps1 @@ -2,15 +2,15 @@ .SYNOPSIS Speaks text with an Italian text-to-speech voice .DESCRIPTION - This script speaks the given text with an Italian text-to-speech (TTS) voice. + This PowerShell script speaks the given text with an Italian text-to-speech (TTS) voice. .PARAMETER text Specifies the text to speak .EXAMPLE PS> ./speak-italian Ciao -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$text = "") diff --git a/Scripts/speak-spanish.ps1 b/Scripts/speak-spanish.ps1 index a056e33c..e1f88159 100755 --- a/Scripts/speak-spanish.ps1 +++ b/Scripts/speak-spanish.ps1 @@ -2,15 +2,15 @@ .SYNOPSIS Speaks text with a Spanish text-to-speech voice .DESCRIPTION - This script speaks the given text with a Spanish text-to-speech (TTS) voice. + This PowerShell script speaks the given text with a Spanish text-to-speech (TTS) voice. .PARAMETER text Specifies the text to speak .EXAMPLE PS> ./speak-spanish Hola -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$text = "") diff --git a/Scripts/speak-test.ps1 b/Scripts/speak-test.ps1 index 57fa6063..5759fb5b 100755 --- a/Scripts/speak-test.ps1 +++ b/Scripts/speak-test.ps1 @@ -2,13 +2,13 @@ .SYNOPSIS Performs a text-to-speech test .DESCRIPTION - This script performs a text-to-speech (TTS) test. + This PowerShell script performs a text-to-speech (TTS) test. .EXAMPLE PS> ./speak-test -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> function Speak { param([string]$Text) diff --git a/Scripts/speak-text.ps1 b/Scripts/speak-text.ps1 index cf44e9ab..2060ca17 100755 --- a/Scripts/speak-text.ps1 +++ b/Scripts/speak-text.ps1 @@ -2,15 +2,15 @@ .SYNOPSIS Speaks text by the default text-to-speech voice .DESCRIPTION - This script speaks the given text by the default text-to-speech (TTS) voice. + This PowerShell script speaks the given text by the default text-to-speech (TTS) voice. .PARAMETER text Specifies the text to read .EXAMPLE PS> ./speak-text "Hello World" -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$text = "") diff --git a/Scripts/spell-word.ps1 b/Scripts/spell-word.ps1 index a1f42f81..cfb307c1 100644 --- a/Scripts/spell-word.ps1 +++ b/Scripts/spell-word.ps1 @@ -2,15 +2,15 @@ .SYNOPSIS Spells a word .DESCRIPTION - This script spells the given word by text-to-speech (TTS). + This PowerShell script spells the given word by text-to-speech (TTS). .PARAMETER word Specifies the word to spell .EXAMPLE PS> ./spell-word -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$word = "") @@ -29,4 +29,4 @@ try { } catch { "⚠️Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))" exit 1 -} \ No newline at end of file +} diff --git a/Scripts/start-calibre-server.ps1 b/Scripts/start-calibre-server.ps1 index 122c979b..48c8deab 100755 --- a/Scripts/start-calibre-server.ps1 +++ b/Scripts/start-calibre-server.ps1 @@ -2,15 +2,15 @@ .SYNOPSIS Starts a local Calibre server .DESCRIPTION - This script starts a local Calibre server as background process (Web port number is 8099 by default). + This PowerShell script starts a local Calibre server as background process (Web port number is 8099 by default). .PARAMETER port Specifies the Web port number (8099 by default) .EXAMPLE PS> ./start-calibre-server -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([int]$port = 8099) diff --git a/Scripts/start-ipfs-server.ps1 b/Scripts/start-ipfs-server.ps1 index 53da511f..7f639d4d 100755 --- a/Scripts/start-ipfs-server.ps1 +++ b/Scripts/start-ipfs-server.ps1 @@ -5,10 +5,10 @@ This PowerShell script starts a local IPFS server as a daemon process. .EXAMPLE PS> ./start-ipfs-server -.NOTES - Author: Markus Fleschutz / License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> try { diff --git a/Scripts/switch-branch.ps1 b/Scripts/switch-branch.ps1 index 59f05a6b..2b108048 100755 --- a/Scripts/switch-branch.ps1 +++ b/Scripts/switch-branch.ps1 @@ -2,17 +2,17 @@ .SYNOPSIS Switches the branch in a Git repository .DESCRIPTION - This script switches to another branch in a Git repository (including submodules). + This PowerShell script switches to another branch in a Git repository (including submodules). .PARAMETER BranchName Specifies the branch name .PARAMETER RepoDir Specifies the path to the Git repository .EXAMPLE PS> ./switch-branch main C:\MyRepo -.NOTES - Author: Markus Fleschutz / License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$BranchName = "", [string]$RepoDir = "$PWD") diff --git a/Scripts/switch-shelly1.ps1 b/Scripts/switch-shelly1.ps1 index d6d9bb9c..98293ce8 100755 --- a/Scripts/switch-shelly1.ps1 +++ b/Scripts/switch-shelly1.ps1 @@ -1,8 +1,8 @@ <# .SYNOPSIS - Switches a Shelly1 device in the local network + Switches a Shelly1 device .DESCRIPTION - This script switches a Shelly1 device in the local network. + This PowerShell script switches a Shelly1 device in the local network. .PARAMETER Host Specifies either the hostname or IP address of the Shelly1 device .PARAMETER TurnMode @@ -11,10 +11,10 @@ Specifies the timer in seconds (0 = infinite) .EXAMPLE PS> ./switch-shelly1 192.168.100.100 toggle 10 -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$Host = "", [string]$TurnMode = "", [int]$Timer = -999) diff --git a/Scripts/sync-repo.ps1 b/Scripts/sync-repo.ps1 index 91ddef99..016043f3 100644 --- a/Scripts/sync-repo.ps1 +++ b/Scripts/sync-repo.ps1 @@ -1,16 +1,16 @@ <# .SYNOPSIS - Synchronizes a Git repository by push & pull (including submodules) + Synchronizes a Git repository .DESCRIPTION - This script synchronizes a Git repository by push & pull (including submodules). + This PowerShell script synchronizes a Git repository by push & pull (including submodules). .PARAMETER RepoDir Specifies the path to the Git repository .EXAMPLE PS> ./sync-repo C:\MyRepo -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$RepoDir = "$PWD") diff --git a/Scripts/tell-joke.ps1 b/Scripts/tell-joke.ps1 index 9ef298c2..61e2dfdb 100755 --- a/Scripts/tell-joke.ps1 +++ b/Scripts/tell-joke.ps1 @@ -2,13 +2,13 @@ .SYNOPSIS Tells a joke by text-to-speech .DESCRIPTION - This script selects a random Chuck Norris joke in Data/jokes.csv and speaks it by text-to-speech (TTS). + This PowerShell script selects a random Chuck Norris joke in Data/jokes.csv and speaks it by text-to-speech (TTS). .EXAMPLE PS> ./tell-joke -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> try { diff --git a/Scripts/tell-quote.ps1 b/Scripts/tell-quote.ps1 index 527165a9..d78100ae 100755 --- a/Scripts/tell-quote.ps1 +++ b/Scripts/tell-quote.ps1 @@ -2,13 +2,13 @@ .SYNOPSIS Tells a quote by text-to-speech .DESCRIPTION - This script selects a random quote in Data/quotes.csv and speaks it by text-to-speech (TTS). + This PowerShell script selects a random quote in Data/quotes.csv and speaks it by text-to-speech (TTS). .EXAMPLE PS> ./tell-quote -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> try { diff --git a/Scripts/translate-file.ps1 b/Scripts/translate-file.ps1 index 57f5ad84..35e673b0 100755 --- a/Scripts/translate-file.ps1 +++ b/Scripts/translate-file.ps1 @@ -2,7 +2,7 @@ .SYNOPSIS Translates a text file into another language .DESCRIPTION - This script translates a text file into another language. + This PowerShell script translates a text file into another language. .PARAMETER File Specifies the file to translate .PARAMETER SourceLang @@ -11,10 +11,10 @@ Specifies the target language .EXAMPLE PS> ./translate-file C:\Memo.txt en de -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$File = "", [string]$SourceLang = "", [string]$TargetLang = "") diff --git a/Scripts/translate-files.ps1 b/Scripts/translate-files.ps1 index 14e05d04..d7f7efe1 100755 --- a/Scripts/translate-files.ps1 +++ b/Scripts/translate-files.ps1 @@ -2,15 +2,15 @@ .SYNOPSIS Translates text files into any supported language .DESCRIPTION - This script translates text files into any supported language. + This PowerShell script translates text files into any supported language. .PARAMETER FilePattern Specifies the file pattern .EXAMPLE PS> ./translate-files C:\Temp\*.txt -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$FilePattern = "") diff --git a/Scripts/translate-text.ps1 b/Scripts/translate-text.ps1 index b69bc5fc..77a6dc81 100755 --- a/Scripts/translate-text.ps1 +++ b/Scripts/translate-text.ps1 @@ -2,7 +2,7 @@ .SYNOPSIS Translates text into other languages .DESCRIPTION - This script translates text into other languages. + This PowerShell script translates text into other languages. .PARAMETER Text Specifies the text to translate .PARAMETER SourceLang @@ -11,10 +11,10 @@ Specifies the target language .EXAMPLE PS> ./translate-text "Hello World" de en -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$Text = "", [string]$SourceLangCode = "en", [string]$TargetLangCode = "any") diff --git a/Scripts/turn-volume-down.ps1 b/Scripts/turn-volume-down.ps1 index e437af59..8f43a99a 100755 --- a/Scripts/turn-volume-down.ps1 +++ b/Scripts/turn-volume-down.ps1 @@ -2,15 +2,15 @@ .SYNOPSIS Turns the audio volume down (-10% by default) .DESCRIPTION - This script turns the audio volume down (by -10% by default). + This PowerShell script turns the audio volume down (by -10% by default). .PARAMETER percent Specifies the percent number .EXAMPLE PS> ./turn-volume-down -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([int]$percent = 10) diff --git a/Scripts/turn-volume-off.ps1 b/Scripts/turn-volume-off.ps1 index a488017c..4e07f42a 100755 --- a/Scripts/turn-volume-off.ps1 +++ b/Scripts/turn-volume-off.ps1 @@ -2,13 +2,13 @@ .SYNOPSIS Turns the volume off .DESCRIPTION - This script mutes the default audio device immediately. + This PowerShell script mutes the default audio device immediately. .EXAMPLE PS> ./turn-volume-off -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> try { diff --git a/Scripts/turn-volume-on.ps1 b/Scripts/turn-volume-on.ps1 index 81352ee1..f60076b3 100755 --- a/Scripts/turn-volume-on.ps1 +++ b/Scripts/turn-volume-on.ps1 @@ -2,13 +2,13 @@ .SYNOPSIS Turns the volume on .DESCRIPTION - This script unmutes the audio output. + This PowerShell script unmutes the audio output. .EXAMPLE - PS> .\turn-volume-on.ps1 -.NOTES - Author: Markus Fleschutz · License: CC0 + PS> .\turn-volume-on .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> try { diff --git a/Scripts/turn-volume-up.ps1 b/Scripts/turn-volume-up.ps1 index 7b716f43..e94cbb25 100755 --- a/Scripts/turn-volume-up.ps1 +++ b/Scripts/turn-volume-up.ps1 @@ -1,16 +1,16 @@ <# .SYNOPSIS - Turns the audio volume up (+10% by default) + Turns the audio volume up .DESCRIPTION - This script turns the audio volume up (by +10% by default) + This PowerShell script turns the audio volume up (by +10% by default) .PARAMETER percent Specifies the percent number .EXAMPLE PS> ./turn-volume-up -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([int]$percent = 10) diff --git a/Scripts/upgrade-ubuntu.ps1 b/Scripts/upgrade-ubuntu.ps1 index 92d324ca..b3a17a39 100644 --- a/Scripts/upgrade-ubuntu.ps1 +++ b/Scripts/upgrade-ubuntu.ps1 @@ -5,10 +5,10 @@ This PowerShell script upgrades Ubuntu Linux to the latest (LTS) release. .EXAMPLE PS> .\upgrade-ubuntu.ps1 -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> try { diff --git a/Scripts/upload-file.ps1 b/Scripts/upload-file.ps1 index 2d10621d..36c8314e 100644 --- a/Scripts/upload-file.ps1 +++ b/Scripts/upload-file.ps1 @@ -2,7 +2,7 @@ .SYNOPSIS Uploads a local file to a FTP server .DESCRIPTION - This script uploads a local file to a FTP server. + This PowerShell script uploads a local file to a FTP server. .PARAMETER File Specifies the path to the local file .PARAMETER URL @@ -13,10 +13,10 @@ Specifies the password .EXAMPLE PS> .\upload-file.ps1 -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$File = "", [string]$URL = "", [string]$Username = "", [string]$Password = "") diff --git a/Scripts/wakeup.ps1 b/Scripts/wakeup.ps1 index c2570bf2..61eecfeb 100755 --- a/Scripts/wakeup.ps1 +++ b/Scripts/wakeup.ps1 @@ -2,7 +2,7 @@ .SYNOPSIS Sends a magic packet to a computer to wake him up .DESCRIPTION - Sends a magic UDP packet twice to a computer to wake him up (requires Wake-On-LAN). + This PowerShell script sends a magic UDP packet twice to a computer to wake him up (requires Wake-On-LAN). .PARAMETER MACaddress Specifies the host's MAC address (e.g. 11:22:33:44:55:66) .PARAMETER IPaddress @@ -12,10 +12,10 @@ .EXAMPLE PS> ./wakeup 11:22:33:44:55:66 192.168.100.100 (PC wakes up) -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$MACaddress = "", [string]$IPaddress = "", [int]$Port=9) diff --git a/Scripts/weather-report.ps1 b/Scripts/weather-report.ps1 index 579d74e1..a2ea2f36 100755 --- a/Scripts/weather-report.ps1 +++ b/Scripts/weather-report.ps1 @@ -2,21 +2,21 @@ .SYNOPSIS Lists the local weather report .DESCRIPTION - This script lists the local weather report. + This PowerShell script lists the local weather report. .PARAMETER GeoLocation Specifies the geographic location to use (determine automatically by default) .EXAMPLE PS> ./weather-report Paris -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$GeoLocation = "") # empty means determine automatically try { - (invoke-webRequest http://v2d.wttr.in/$GeoLocation -userAgent "curl" -useBasicParsing).Content + (Invoke-WebRequest http://v2d.wttr.in/$GeoLocation -userAgent "curl" -useBasicParsing).Content exit 0 # success } catch { "⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))" diff --git a/Scripts/weather.ps1 b/Scripts/weather.ps1 index c8a07c41..6e455d18 100755 --- a/Scripts/weather.ps1 +++ b/Scripts/weather.ps1 @@ -2,15 +2,15 @@ .SYNOPSIS Lists the current weather forecast .DESCRIPTION - This script lists the current weather forecast. + This PowerShell script lists the current weather forecast. .PARAMETER GeoLocation Specifies the geographic location to use .EXAMPLE PS> ./weather Paris -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$GeoLocation = "") # empty means determine automatically diff --git a/Scripts/what-is.ps1 b/Scripts/what-is.ps1 index fda894ce..08786032 100755 --- a/Scripts/what-is.ps1 +++ b/Scripts/what-is.ps1 @@ -2,15 +2,15 @@ .SYNOPSIS Prints a description of an abbreviation .DESCRIPTION - This script prints a description of the given abbreviation. + This PowerShell script prints a description of the given abbreviation. .PARAMETER abbreviation Specifies the appreviation to look for .EXAMPLE PS> ./what-is IAS -.NOTES - Author: Markus Fleschutz / License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$abbreviation = "") diff --git a/Scripts/write-animated.ps1 b/Scripts/write-animated.ps1 index 23ae01ab..a085843e 100755 --- a/Scripts/write-animated.ps1 +++ b/Scripts/write-animated.ps1 @@ -2,13 +2,13 @@ .SYNOPSIS Writes animated text .DESCRIPTION - This script writes animated text. + This PowerShell script writes animated text. .EXAMPLE PS> ./write-animated "Hello World" -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param($Line1 = "", $Line2 = "", $Line3 = "", $Line4 = "", $Line5 = "", $Line6 = "", $Line7 = "", $Line8 = "", $Line9 = "", [int]$Speed = 30) # 30 ms pause diff --git a/Scripts/write-big.ps1 b/Scripts/write-big.ps1 index 55c75545..f18766c5 100755 --- a/Scripts/write-big.ps1 +++ b/Scripts/write-big.ps1 @@ -2,15 +2,15 @@ .SYNOPSIS Writes text in big letters .DESCRIPTION - This script writes the given text in big letters. + This PowerShell script writes the given text in big letters. .PARAMETER text Specifies the text to write .EXAMPLE PS> ./write-big "Hello World" -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$text = "") diff --git a/Scripts/write-blue.ps1 b/Scripts/write-blue.ps1 index a9016d94..d22cee1a 100755 --- a/Scripts/write-blue.ps1 +++ b/Scripts/write-blue.ps1 @@ -2,15 +2,15 @@ .SYNOPSIS Writes text in a blue foreground color .DESCRIPTION - This script writes text in a blue foreground color. + This PowerShell script writes text in a blue foreground color. .PARAMETER text Specifies the text to write .EXAMPLE PS> ./write-blue "Hello World" -.NOTES - Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz / License: CC0 #> param([string]$text = "") diff --git a/Scripts/write-braille.ps1 b/Scripts/write-braille.ps1 index c4fa89b2..b4dd60e4 100755 --- a/Scripts/write-braille.ps1 +++ b/Scripts/write-braille.ps1 @@ -2,13 +2,13 @@ .SYNOPSIS Writes text in Braille .DESCRIPTION - This script writes text in Braille. + This PowerShell script writes text in Braille. .PARAMETER text Specifies the text to write .EXAMPLE PS> ./write-braille "Hello World" .NOTES - Author: Markus Fleschutz · License: CC0 + Author: Markus Fleschutz / License: CC0 .LINK https://github.com/fleschutz/PowerShell #> diff --git a/Scripts/write-calendar.ps1 b/Scripts/write-calendar.ps1 index 02933d2d..1ac8ed16 100644 --- a/Scripts/write-calendar.ps1 +++ b/Scripts/write-calendar.ps1 @@ -1,8 +1,8 @@ <# .SYNOPSIS - Writes out calendar elements, either a single month or an entire year + Writes out a calendar .DESCRIPTION - write-calendar.ps1 [] [] + Writes out calendar elements, either a single month or an entire year. .PARAMETER Month If specified, will limit output to a single month with this numeral value. .PARAMETER Year @@ -20,7 +20,7 @@ PS> ./write-calendar 7 Outputs the calendar for July of this year. .NOTES - Author: Markus Fleschutz · License: CC0 + Author: Markus Fleschutz / License: CC0 .LINK https://github.com/fleschutz/PowerShell #> diff --git a/Scripts/write-chart.ps1 b/Scripts/write-chart.ps1 index 03265f35..0e47e9a1 100644 --- a/Scripts/write-chart.ps1 +++ b/Scripts/write-chart.ps1 @@ -2,11 +2,11 @@ .SYNOPSIS Writes a chart .DESCRIPTION - This script writes a chart. + This PowerShell script writes a chart. .EXAMPLE PS> ./write-chart .NOTES - Author: Markus Fleschutz · License: CC0 + Author: Markus Fleschutz / License: CC0 .LINK https://github.com/fleschutz/PowerShell #> diff --git a/Scripts/write-green.ps1 b/Scripts/write-green.ps1 index b25e4568..ed7b3418 100755 --- a/Scripts/write-green.ps1 +++ b/Scripts/write-green.ps1 @@ -2,13 +2,13 @@ .SYNOPSIS Writes text in a green foreground color .DESCRIPTION - This script writes text in a green foreground color. + This PowerShell script writes text in a green foreground color. .PARAMETER text Specifies the text to write .EXAMPLE PS> ./write-green "Hello World" .NOTES - Author: Markus Fleschutz · License: CC0 + Author: Markus Fleschutz / License: CC0 .LINK https://github.com/fleschutz/PowerShell #> diff --git a/Scripts/write-joke.ps1 b/Scripts/write-joke.ps1 index 9ab14c4e..a9c50b4d 100755 --- a/Scripts/write-joke.ps1 +++ b/Scripts/write-joke.ps1 @@ -2,12 +2,12 @@ .SYNOPSIS Writes a random Juck Norris joke to the console .DESCRIPTION - This script writes a random Juck Norris joke to the console. + This PowerShell script writes a random Juck Norris joke to the console. .EXAMPLE PS> ./write-joke When Chuck Norris does division, there are no remainders. 😂 .NOTES - Author: Markus Fleschutz · License: CC0 + Author: Markus Fleschutz / License: CC0 .LINK https://github.com/fleschutz/PowerShell #> diff --git a/Scripts/write-lowercase.ps1 b/Scripts/write-lowercase.ps1 index 8ced6b23..911a067e 100755 --- a/Scripts/write-lowercase.ps1 +++ b/Scripts/write-lowercase.ps1 @@ -2,13 +2,13 @@ .SYNOPSIS Writes text in lowercase letters .DESCRIPTION - This script writes text in lowercase letters. + This PowerShell script writes text in lowercase letters. .PARAMETER text Specifies the text to write .EXAMPLE PS> ./write-lowercase "Hello World" .NOTES - Author: Markus Fleschutz · License: CC0 + Author: Markus Fleschutz / License: CC0 .LINK https://github.com/fleschutz/PowerShell #> diff --git a/Scripts/write-marquee.ps1 b/Scripts/write-marquee.ps1 index 751b8047..156d36ac 100755 --- a/Scripts/write-marquee.ps1 +++ b/Scripts/write-marquee.ps1 @@ -2,7 +2,7 @@ .SYNOPSIS Writes text as marquee .DESCRIPTION - This script writes text as marquee. + This PowerShell script writes text as marquee. .PARAMETER text Specifies the text to write .PARAMETER speed @@ -10,7 +10,7 @@ .EXAMPLE PS> ./write-marquee "Hello World" .NOTES - Author: Markus Fleschutz · License: CC0 + Author: Markus Fleschutz / License: CC0 .LINK https://github.com/fleschutz/PowerShell #> diff --git a/Scripts/write-morse-code.ps1 b/Scripts/write-morse-code.ps1 index 1cec0921..64033f4c 100755 --- a/Scripts/write-morse-code.ps1 +++ b/Scripts/write-morse-code.ps1 @@ -2,7 +2,7 @@ .SYNOPSIS Writes text in Morse code .DESCRIPTION - This script writes text in Morse code. + This PowerShell script writes text in Morse code. .PARAMETER text Specifies the text to write .PARAMETER speed @@ -10,7 +10,7 @@ .EXAMPLE PS> ./write-morse-code "Hello World" .NOTES - Author: Markus Fleschutz · License: CC0 + Author: Markus Fleschutz / License: CC0 .LINK https://github.com/fleschutz/PowerShell #> diff --git a/Scripts/write-motd.ps1 b/Scripts/write-motd.ps1 index 99025bf5..fe26569f 100755 --- a/Scripts/write-motd.ps1 +++ b/Scripts/write-motd.ps1 @@ -2,11 +2,11 @@ .SYNOPSIS Writes the message of the day (MOTD) .DESCRIPTION - This script writes the message of the day (MOTD). + This PowerShell script writes the message of the day (MOTD). .EXAMPLE PS> ./write-motd .NOTES - Author: Markus Fleschutz · License: CC0 + Author: Markus Fleschutz / License: CC0 .LINK https://github.com/fleschutz/PowerShell #> diff --git a/Scripts/write-quote.ps1 b/Scripts/write-quote.ps1 index 2f78e08c..9efe7d20 100755 --- a/Scripts/write-quote.ps1 +++ b/Scripts/write-quote.ps1 @@ -2,11 +2,11 @@ .SYNOPSIS Writes a random quote to the console .DESCRIPTION - This script writes a random quote to the console. + This PowerShell script writes a random quote to the console. .EXAMPLE PS> ./write-quote .NOTES - Author: Markus Fleschutz · License: CC0 + Author: Markus Fleschutz / License: CC0 .LINK https://github.com/fleschutz/PowerShell #> diff --git a/Scripts/write-red.ps1 b/Scripts/write-red.ps1 index 52922dd3..6724716f 100755 --- a/Scripts/write-red.ps1 +++ b/Scripts/write-red.ps1 @@ -2,13 +2,13 @@ .SYNOPSIS Writes text in a red foreground color .DESCRIPTION - This script writes text in a red foreground color. + This PowerShell script writes text in a red foreground color. .PARAMETER text Specifies the text to write .EXAMPLE PS> ./write-red "Hello World" .NOTES - Author: Markus Fleschutz · License: CC0 + Author: Markus Fleschutz / License: CC0 .LINK https://github.com/fleschutz/PowerShell #> diff --git a/Scripts/write-rot13.ps1 b/Scripts/write-rot13.ps1 index 7045b6d6..7f91ef7c 100755 --- a/Scripts/write-rot13.ps1 +++ b/Scripts/write-rot13.ps1 @@ -2,13 +2,13 @@ .SYNOPSIS Writes text encoded or decoded with ROT13 .DESCRIPTION - This script writes text encoded or decoded with ROT13. + This PowerShell script writes text encoded or decoded with ROT13. .PARAMETER text Specifies the text to write .EXAMPLE PS> ./write-rot13 "Hello World" .NOTES - Author: Markus Fleschutz · License: CC0 + Author: Markus Fleschutz / License: CC0 .LINK https://github.com/fleschutz/PowerShell #> diff --git a/Scripts/write-typewriter.ps1 b/Scripts/write-typewriter.ps1 index cd8589bd..6f22a351 100755 --- a/Scripts/write-typewriter.ps1 +++ b/Scripts/write-typewriter.ps1 @@ -2,7 +2,7 @@ .SYNOPSIS Writes text with the typewriter effect .DESCRIPTION - This script writes text with the typewriter effect. + This PowerShell script writes text with the typewriter effect. .PARAMETER text Specifies the text to write .PARAMETER speed @@ -10,7 +10,7 @@ .EXAMPLE PS> ./write-typewriter "Hello World" .NOTES - Author: Markus Fleschutz · License: CC0 + Author: Markus Fleschutz / License: CC0 .LINK https://github.com/fleschutz/PowerShell #> diff --git a/Scripts/write-uppercase.ps1 b/Scripts/write-uppercase.ps1 index 3b319498..51914183 100755 --- a/Scripts/write-uppercase.ps1 +++ b/Scripts/write-uppercase.ps1 @@ -2,13 +2,13 @@ .SYNOPSIS Writes text in uppercase letters .DESCRIPTION - This script writes text in uppercase letters. + This PowerShell script writes text in uppercase letters. .PARAMETER text Specifies the text to write .EXAMPLE PS> ./write-uppercase "Hello World" .NOTES - Author: Markus Fleschutz · License: CC0 + Author: Markus Fleschutz / License: CC0 .LINK https://github.com/fleschutz/PowerShell #> diff --git a/Scripts/write-vertical.ps1 b/Scripts/write-vertical.ps1 index 4243beb3..92c39655 100755 --- a/Scripts/write-vertical.ps1 +++ b/Scripts/write-vertical.ps1 @@ -2,13 +2,13 @@ .SYNOPSIS Writes text in vertical direction .DESCRIPTION - This script writes text in vertical direction. + This PowerShell script writes text in vertical direction. .PARAMETER text Specifies the text to write .EXAMPLE PS> ./write-vertical "Hello World" .NOTES - Author: Markus Fleschutz · License: CC0 + Author: Markus Fleschutz / License: CC0 .LINK https://github.com/fleschutz/PowerShell #>