From dad83f4705342214af54702241e350d64e7d87b0 Mon Sep 17 00:00:00 2001 From: "Kelly N. Bodwin" Date: Fri, 12 Jul 2024 12:10:21 +0200 Subject: [PATCH] Update install_r_macos.md Dollar sign in $PATH should not be escaped --- working_documents/install_r_macos.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/working_documents/install_r_macos.md b/working_documents/install_r_macos.md index d95ea9c9..4a2b3fe0 100644 --- a/working_documents/install_r_macos.md +++ b/working_documents/install_r_macos.md @@ -55,12 +55,12 @@ Open Terminal.app to run the shell commands in the instructions below: ``` sh # Intel - export PATH="/opt/R/x86_64/bin:\${PATH}" + export PATH="/opt/R/x86_64/bin:${PATH}" ``` ``` sh # Apple Silicon (M1, M2, ...) - export PATH="/opt/R/arm64/bin:\${PATH}" + export PATH="/opt/R/arm64/bin:${PATH}" ``` This will add the `/opt/R/*/bin` directory to your `PATH` variable