From 643aeb782e1038d7557ebe366138a802b0d63a7b Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Fri, 24 Sep 2021 08:57:08 +0200 Subject: [PATCH] Update description --- Scripts/add-firewall-rules.ps1 | 4 ++-- Scripts/add-memo.ps1 | 4 ++-- Scripts/alert.ps1 | 4 ++-- Scripts/cd-desktop.ps1 | 2 +- Scripts/turn-volume-down.ps1 | 2 +- Scripts/turn-volume-up.ps1 | 4 ++-- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Scripts/add-firewall-rules.ps1 b/Scripts/add-firewall-rules.ps1 index 551c27d3..f6ebd091 100755 --- a/Scripts/add-firewall-rules.ps1 +++ b/Scripts/add-firewall-rules.ps1 @@ -2,9 +2,9 @@ .SYNOPSIS add-firewall-rules.ps1 [] .DESCRIPTION - Adds firewall rules for the given executables (needs administrator rights). + Adds firewall rules for the given executables (needs administrator rights) .EXAMPLE - PS> .\add-firewall-rules.ps1 C:\MyApp\bin + PS> ./add-firewall-rules C:\MyApp\bin .LINK https://github.com/fleschutz/PowerShell .NOTES diff --git a/Scripts/add-memo.ps1 b/Scripts/add-memo.ps1 index bffd05bf..12ea9bfe 100755 --- a/Scripts/add-memo.ps1 +++ b/Scripts/add-memo.ps1 @@ -2,9 +2,9 @@ .SYNOPSIS add-memo.ps1 [] .DESCRIPTION - Adds the given memo text to $HOME/Memos.csv. + Adds the given memo text to $HOME/Memos.csv .EXAMPLE - PS> .\add-memo.ps1 "Buy apples" + PS> ./add-memo "Buy apples" .LINK https://github.com/fleschutz/PowerShell .NOTES diff --git a/Scripts/alert.ps1 b/Scripts/alert.ps1 index 7ea98f3a..96dd33ec 100755 --- a/Scripts/alert.ps1 +++ b/Scripts/alert.ps1 @@ -2,9 +2,9 @@ .SYNOPSIS alert.ps1 [] .DESCRIPTION - Handle and escalate the given alert message. + Handle and escalate the given alert message .EXAMPLE - PS> .\alert.ps1 "Harddisk failure" + PS> ./alert "Harddisk failure" .LINK https://github.com/fleschutz/PowerShell .NOTES diff --git a/Scripts/cd-desktop.ps1 b/Scripts/cd-desktop.ps1 index 806aed0d..65227f80 100755 --- a/Scripts/cd-desktop.ps1 +++ b/Scripts/cd-desktop.ps1 @@ -4,7 +4,7 @@ .DESCRIPTION Change the working directory to the user's desktop folder .EXAMPLE - PS> .\cd-desktop.ps1 + PS> ./cd-desktop .LINK https://github.com/fleschutz/PowerShell .NOTES diff --git a/Scripts/turn-volume-down.ps1 b/Scripts/turn-volume-down.ps1 index a85bca3c..59b74aa0 100755 --- a/Scripts/turn-volume-down.ps1 +++ b/Scripts/turn-volume-down.ps1 @@ -4,7 +4,7 @@ .DESCRIPTION Turns the audio volume down (-10% by default). .EXAMPLE - PS> .\turn-volume-down.ps1 + PS> ./turn-volume-down .NOTES Author: Markus Fleschutz · License: CC0 .LINK diff --git a/Scripts/turn-volume-up.ps1 b/Scripts/turn-volume-up.ps1 index 4e8fcc2d..fea834ee 100755 --- a/Scripts/turn-volume-up.ps1 +++ b/Scripts/turn-volume-up.ps1 @@ -2,9 +2,9 @@ .SYNOPSIS turn-volume-up.ps1 [] .DESCRIPTION - Turns the audio volume up (+10% by default). + Turns the audio volume up (+10% by default) .EXAMPLE - PS> .\turn-volume-up.ps1 + PS> ./turn-volume-up .NOTES Author: Markus Fleschutz · License: CC0 .LINK