From b2224144cfc28f002ca943bd15b4d67ba38d1ba2 Mon Sep 17 00:00:00 2001 From: Femi Olamijulo <90219549+femiolamijulo@users.noreply.github.com> Date: Mon, 8 Jan 2024 04:46:47 -0500 Subject: [PATCH] Deleted repeated word. --- commandline/04-unix.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commandline/04-unix.md b/commandline/04-unix.md index e92e3dd..6c77c4c 100644 --- a/commandline/04-unix.md +++ b/commandline/04-unix.md @@ -67,7 +67,7 @@ Check out all of your environment variables: `printenv` ## ❇️ Example: permanently setting an environment variable -Lets modify an environment variable in side your your `~/.bash_profile` (macOS) or `~/.bashrc` (Ubuntu). +Lets modify an environment variable inside your `~/.bash_profile` (macOS) or `~/.bashrc` (Ubuntu). 1. First `touch ~/.bash_profile` (macOS) or `touch ~/.bashrc` (Ubuntu) in the terminal. This will create an empty file in your home folder if one doesn't already exist. If the file does exist, the touch command won't modify it's contents.