From 7acd0eac92be596db513f1a2703e8afc8008f015 Mon Sep 17 00:00:00 2001 From: Stratus3D Date: Thu, 8 Dec 2016 09:56:48 -0500 Subject: [PATCH] Use -e flag when calling echo so newlines are used. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e415f404..613f6819 100644 --- a/README.md +++ b/README.md @@ -15,12 +15,12 @@ git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.2.0 Depending on your OS, run the following ```bash # For Ubuntu or other linux distros -echo '\n. $HOME/.asdf/asdf.sh' >> ~/.bashrc -echo '\n. $HOME/.asdf/completions/asdf.bash' >> ~/.bashrc +echo -e '\n. $HOME/.asdf/asdf.sh' >> ~/.bashrc +echo -e '\n. $HOME/.asdf/completions/asdf.bash' >> ~/.bashrc # OR for Mac OSX -echo '\n. $HOME/.asdf/asdf.sh' >> ~/.bash_profile -echo '\n. $HOME/.asdf/completions/asdf.bash' >> ~/.bash_profile +echo -e '\n. $HOME/.asdf/asdf.sh' >> ~/.bash_profile +echo -e '\n. $HOME/.asdf/completions/asdf.bash' >> ~/.bash_profile ``` If you use zsh or any other shell, replace `.bashrc` with the config file for the respective shell.