From faa0feded39cc6bf9b1c9b3a0bf2b90c8b56bde4 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Mon, 25 May 2020 20:37:47 +0200 Subject: [PATCH 1/2] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index a2b684b3..7b02b981 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,10 @@ PowerShell is a task automation and configuration management framework from Micr * PowerShell is easy to learn: see the tutorial at https://www.guru99.com/powershell-tutorial.html * PowerShell is fully documented: see the official docs at https://docs.microsoft.com/en-us/powershell/ +Add Subfolder Scripts/ to the Search Path for Command-line Usage +---------------------------------------------------------------- +* **Windows:** open the environment variables dialogue and add the full path to Scripts/ to the system environment variable "Path" + Script Standards ---------------- Each script provides: From 3665adfd98c57b03291f138fa35c97cd88b5c651 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Mon, 25 May 2020 20:55:16 +0200 Subject: [PATCH 2/2] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7b02b981..e2f32af7 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,8 @@ PowerShell is a task automation and configuration management framework from Micr Add Subfolder Scripts/ to the Search Path for Command-line Usage ---------------------------------------------------------------- -* **Windows:** open the environment variables dialogue and add the full path to Scripts/ to the system environment variable "Path" +* **Windows:** open the environment variables dialogue and add the full path to Scripts/ to the system environment variable "Path" +* **Bash or sh:** edit .profile in your home directory and add the line: PATH="$PATH:/path/to/PowerShell/Scripts" Script Standards ----------------