From 1f8dad377133308841622deb5a8d6b50daa18e05 Mon Sep 17 00:00:00 2001 From: "Zed A. Shaw" Date: Wed, 10 Jul 2024 09:53:16 -0400 Subject: [PATCH] Stupid windows tries to translate the damn > output and screws up files. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5dfa879..3643cf3 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ First, you run the `base.ps1` script to get an initial setup of basic things all need. This allows you to then install any other languages very quickly: ```shell -irm https://learncodethehardway.com/setup/base.ps1 > base.ps1 +irm https://learncodethehardway.com/setup/base.ps1 -outfile base.ps1 powershell -executionpolicy bypass .\base.ps1 ``` @@ -28,7 +28,7 @@ irm https://learncodethehardway.com/setup/python.ps1 | iex You can also save the script locally first and view it before running it: ```shell -irm https://learncodethehardway.com/setup/python.ps1 > python.ps1 +irm https://learncodethehardway.com/setup/python.ps1 -outfile python.ps1 powershell -executionpolicy bypass .\python.ps1 ```