From 594cd00b14c2142bc2a47f0003ae1744a9587a7e Mon Sep 17 00:00:00 2001 From: Kasper Christensen Date: Tue, 22 Aug 2023 23:38:52 +0200 Subject: [PATCH] Added export PATH zprofile example in README.md --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9155dbe..cc63013 100644 --- a/README.md +++ b/README.md @@ -50,11 +50,16 @@ $ git clone --depth=1 https://github.com/tfutils/tfenv.git ~/.tfenv 2. Add `~/.tfenv/bin` to your `$PATH` any way you like +bash: ```console $ echo 'export PATH="$HOME/.tfenv/bin:$PATH"' >> ~/.bash_profile ``` +zsh: +```console +$ echo 'export PATH="$HOME/.tfenv/bin:$PATH"' >> ~/.zprofile +``` - For WSL users +For WSL users: ```bash $ echo 'export PATH=$PATH:$HOME/.tfenv/bin' >> ~/.bashrc ```