How to correctly add a path to PATH?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP












806















I'm wondering where a new path has to be added to the PATH environment variable. I know this can be accomplished by editing .bashrc (for example), but it's not clear how to do this.



This way:



export PATH=~/opt/bin:$PATH


or this?





export PATH=$PATH:~/opt/bin









share|improve this question
























  • printf 'nPATH=$PATH:"path-to-add"nexport PATHn' >> ~/.bashrc

    – Sudoer
    Nov 7 '14 at 13:04






  • 2





    Unix shell function for adding directories to PATH

    – Sildoreth
    Apr 30 '15 at 13:59












  • If there are already some paths added, e.g. PATH=$PATH:$HOME/.local/bin:$HOME/bin, another can be added by separating with a : e.g. PATH=$PATH:$HOME/.local/bin:$HOME/bin:/home/ec2-user/pear/bin.

    – Sandeepan Nath
    Aug 20 '16 at 18:40











  • Do these answers work for all flavors of linux?

    – Ungeheuer
    Nov 20 '16 at 20:58















806















I'm wondering where a new path has to be added to the PATH environment variable. I know this can be accomplished by editing .bashrc (for example), but it's not clear how to do this.



This way:



export PATH=~/opt/bin:$PATH


or this?





export PATH=$PATH:~/opt/bin









share|improve this question
























  • printf 'nPATH=$PATH:"path-to-add"nexport PATHn' >> ~/.bashrc

    – Sudoer
    Nov 7 '14 at 13:04






  • 2





    Unix shell function for adding directories to PATH

    – Sildoreth
    Apr 30 '15 at 13:59












  • If there are already some paths added, e.g. PATH=$PATH:$HOME/.local/bin:$HOME/bin, another can be added by separating with a : e.g. PATH=$PATH:$HOME/.local/bin:$HOME/bin:/home/ec2-user/pear/bin.

    – Sandeepan Nath
    Aug 20 '16 at 18:40











  • Do these answers work for all flavors of linux?

    – Ungeheuer
    Nov 20 '16 at 20:58













806












806








806


433






I'm wondering where a new path has to be added to the PATH environment variable. I know this can be accomplished by editing .bashrc (for example), but it's not clear how to do this.



This way:



export PATH=~/opt/bin:$PATH


or this?





export PATH=$PATH:~/opt/bin









share|improve this question
















I'm wondering where a new path has to be added to the PATH environment variable. I know this can be accomplished by editing .bashrc (for example), but it's not clear how to do this.



This way:



export PATH=~/opt/bin:$PATH


or this?





export PATH=$PATH:~/opt/bin






bash environment-variables path bashrc






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Sep 17 '15 at 18:27









Scott

6,91152750




6,91152750










asked Dec 4 '11 at 20:57









PaoloPaolo

5,19772136




5,19772136












  • printf 'nPATH=$PATH:"path-to-add"nexport PATHn' >> ~/.bashrc

    – Sudoer
    Nov 7 '14 at 13:04






  • 2





    Unix shell function for adding directories to PATH

    – Sildoreth
    Apr 30 '15 at 13:59












  • If there are already some paths added, e.g. PATH=$PATH:$HOME/.local/bin:$HOME/bin, another can be added by separating with a : e.g. PATH=$PATH:$HOME/.local/bin:$HOME/bin:/home/ec2-user/pear/bin.

    – Sandeepan Nath
    Aug 20 '16 at 18:40











  • Do these answers work for all flavors of linux?

    – Ungeheuer
    Nov 20 '16 at 20:58

















  • printf 'nPATH=$PATH:"path-to-add"nexport PATHn' >> ~/.bashrc

    – Sudoer
    Nov 7 '14 at 13:04






  • 2





    Unix shell function for adding directories to PATH

    – Sildoreth
    Apr 30 '15 at 13:59












  • If there are already some paths added, e.g. PATH=$PATH:$HOME/.local/bin:$HOME/bin, another can be added by separating with a : e.g. PATH=$PATH:$HOME/.local/bin:$HOME/bin:/home/ec2-user/pear/bin.

    – Sandeepan Nath
    Aug 20 '16 at 18:40











  • Do these answers work for all flavors of linux?

    – Ungeheuer
    Nov 20 '16 at 20:58
















printf 'nPATH=$PATH:"path-to-add"nexport PATHn' >> ~/.bashrc

– Sudoer
Nov 7 '14 at 13:04





printf 'nPATH=$PATH:"path-to-add"nexport PATHn' >> ~/.bashrc

– Sudoer
Nov 7 '14 at 13:04




2




2





Unix shell function for adding directories to PATH

– Sildoreth
Apr 30 '15 at 13:59






Unix shell function for adding directories to PATH

– Sildoreth
Apr 30 '15 at 13:59














If there are already some paths added, e.g. PATH=$PATH:$HOME/.local/bin:$HOME/bin, another can be added by separating with a : e.g. PATH=$PATH:$HOME/.local/bin:$HOME/bin:/home/ec2-user/pear/bin.

– Sandeepan Nath
Aug 20 '16 at 18:40





If there are already some paths added, e.g. PATH=$PATH:$HOME/.local/bin:$HOME/bin, another can be added by separating with a : e.g. PATH=$PATH:$HOME/.local/bin:$HOME/bin:/home/ec2-user/pear/bin.

– Sandeepan Nath
Aug 20 '16 at 18:40













Do these answers work for all flavors of linux?

– Ungeheuer
Nov 20 '16 at 20:58





Do these answers work for all flavors of linux?

– Ungeheuer
Nov 20 '16 at 20:58










11 Answers
11






active

oldest

votes


















890














The simple stuff



PATH=$PATH:~/opt/bin
PATH=~/opt/bin:$PATH


depending on whether you want to add ~/opt/bin at the end (to be searched after all other directories, in case there is a program by the same name in multiple directories) or at the beginning (to be searched before all other directories).



You can add multiple entries at the same time. PATH=$PATH:~/opt/bin:~/opt/node/bin or variations on the ordering work just fine. Don't put export at the beginning of the line as it has additional complications (see below under “Nots on shells other than bash”).



If your PATH gets built by many different components, you might end up with duplicate entries. See How to add home directory path to be discovered by Unix which command? and Remove duplicate $PATH entries with awk command to avoid adding duplicates or remove them.



Some distributions automatically put ~/bin in your PATH if it exists, by the way.



Where to put it



Note that ~/.bash_rc is not read by any program, and ~/.bashrc is the configuration file of interactive instances of bash. You should not define environment variables in ~/.bashrc. The right place to define environment variables such as PATH is ~/.profile (or ~/.bash_profile if you don't care about shells other than bash). See What's the difference between them and which one should I use?



Don't put this in /etc/environment or ~/.pam_environment: these are not shell files, you can't use substitutions like $PATH in there. In these files, you can only override a variable, not add to it.



Potential complications in some system scripts



You don't need export if the variable is already in the environment: any change of the value of the variable is reflected in the environment.¹ PATH is pretty much always in the environment; all unix systems set it very early on (usually in the very first process, in fact).



At login time, you can rely on PATH being already in the environment, and already containing some system directories. If you're writing a script that may be executed early while setting up some kind of virtual environment, you may need to ensure that PATH is non-empty and exported: if PATH is not set yet then something like PATH=$PATH:/some/directory would set PATH to :/some/directory, and the empty component at the beginning means the current directory (like .:/some/directory).



if [ -z "$PATH-" ]; then export PATH=/usr/local/bin:/usr/bin:/bin; fi


Notes on shells other than bash



In bash, ksh and zsh, export is special syntax, and both PATH=~/opt/bin:$PATH and export PATH=~/opt/bin:$PATH do the right thing even. In other Bourne/POSIX-style shells such as dash (which is /bin/sh on many systems), export is parsed as an ordinary command, which implies two differences:




  • ~ is only parsed at the beginning of a word, except in assignments (see How to add home directory path to be discovered by Unix which command? for details);


  • $PATH outside double quotes breaks if PATH contains whitespace or [*?.

So in shells like dash, export PATH=~/opt/bin:$PATH sets PATH to the literal string ~/opt/bin/: followed by the value of PATH up to the first space.
PATH=~/opt/bin:$PATH (a bare assignment) doesn't require quotes and does the right thing. If you want to use export in a portable script, you need to write export PATH="$HOME/opt/bin:$PATH", or PATH=~/opt/bin:$PATH; export PATH (or PATH=$HOME/opt/bin:$PATH; export PATH for portability to even the Bourne shell that didn't accept export var=value and didn't do tilde expansion).



¹ This wasn't true in Bourne shells (as in the actual Bourne shell, not modern POSIX-style shells), but you're highly unlikely to encounter such old shells these days.






share|improve this answer
































    78














    Either way works, but they don't do the same thing: the elements of PATHare checked left to right. In your first example, executables in ~/opt/bin will have precedence over those installed, for example, in /usr/bin, which may or may not be what you want.



    In particular, from a safety point of view, it is dangerous to add paths to the front, because if someone can gain write access to your ~/opt/bin, they can put, for example, a different ls in there, which you'd then probably use instead of /bin/ls without noticing. Now imagine the same for ssh or your browser or choice... (The same goes triply for putting . in your path.)






    share|improve this answer


















    • 5





      But if you want to have your own, customized version of ls, you need to put it in a directory ahead of /bin.

      – Barmar
      Sep 17 '15 at 20:20






    • 14





      or alias ls=myls

      – waltinator
      Sep 18 '15 at 1:27


















    32














    I'm confused by question 2 (since removed from the question since it was due to an unrelated issue):




    What's a workable way to append more paths on different lines?
    Initially I thought this could do the trick:





    export PATH=$PATH:~/opt/bin
    export PATH=$PATH:~/opt/node/bin


    but it doesn't because the second assignment doesn't only append
    ~/opt/node/bin, but also the whole PATH previously assigned.



    This is a possible workaround:





    export PATH=$PATH:~/opt/bin:~/opt/node/bin


    but for readability I'd prefer to have one assignment for one path.




    If you say



    PATH=~/opt/bin


    that's all that will be in your PATH. PATH is just an environment variable, and if you want to add to the PATH, you have to rebuild the variable with exactly the contents you want. That is, what you give as an example to question 2 is exactly what you want to do, unless I'm totally missing the point of the question.



    I use both forms in my code. I have a generic profile that I install on every machine I work on that looks like this, to accommodate for potentially-missing directories:



    export PATH=/opt/bin:/usr/local/bin:/usr/contrib/bin:/bin:/usr/bin:/usr/sbin:/usr/bin/X11
    # add optional items to the path
    for bindir in $HOME/local/bin $HOME/bin; do
    if [ -d $bindir ]; then
    PATH=$PATH:$bindir
    fi
    done





    share|improve this answer




















    • 2





      You are right about the example of question 2, it works. Another PATH related issue on my system confused me. Sorry for that.

      – Paolo
      Dec 5 '11 at 0:59


















    24














    Linux determines the executable search path with the $PATH environment variable. To add directory /data/myscripts to the beginning of the $PATH environment variable, use the following:



    PATH=/data/myscripts:$PATH


    To add that directory to the end of the path, use the following command:



    PATH=$PATH:/data/myscripts


    But the preceding are not sufficient because when you set an environment variable inside a script, that change is effective only within the script. There are only two ways around this limitation:



    • If, within the script, you export the environment variable it is effective within any programs called by the script. Note that it is not effective within the program that called the script.

    • If the program that calls the script does so by inclusion instead of calling, any environment changes in the script are effective within the calling program. Such inclusion can be done with the dot command or the source command.

    Examples:



    $HOME/myscript.sh
    source $HOME/myscript.sh


    Inclusion basically incorporates the "called" script in the "calling" script. It's like a #include in C. So it's effective inside the "calling" script or program. But of course, it's not effective in any programs or scripts called by the calling program. To make it effective all the way down the call chain, you must follow the setting of the environment variable with an export command.



    As an example, the bash shell program incorporates the contents of file .bash_profile by inclusion. So putting the following 2 lines in .bash_profile:



    PATH=$PATH:/data/myscripts
    export PATH


    effectively puts those 2 lines of code in the bash program. So within bash the $PATH variable includes $HOME/myscript.sh, and because of the export statement, any programs called by bash have the altered $PATH variable. And because any programs you run from a bash prompt are called by bash, the new path is in force for anything you run from the bash prompt.



    The bottom line is that to add a new directory to the path, you must append or prepend the directory to the $PATH environment variable within a script included in the shell, and you must export the $PATH environment variable.



    More information here






    share|improve this answer






























      18














      For some time now I've kept with me two functions pathadd and pathrm that assist in adding elements to the path without the need to worry about duplications.



      pathadd takes a single path argument and an optional after argument which if supplied will append to the PATH otherwise it prepends it.



      In almost every situation if you're adding to the path then you're likely wanting to override anything already in the path, which is why I opt to prepend by default.



      pathadd() :)" ; then
      if [ "$2" = "after" ] ; then
      PATH="$PATH:$newelement"
      else
      PATH="$newelement:$PATH"
      fi
      fi


      pathrm() sed -e "s;(^


      Put these in any script you wish to alter the PATH environment and you can now do.



      pathadd "/foo/bar"
      pathadd "/baz/bat" after
      export PATH


      You're guaranteed not to add to the path if it's already there. If you now want to ensure /baz/bat is at the start.



      pathrm "/baz/bat"
      pathadd "/baz/bat"
      export PATH


      Now any path can be moved to the front if it's already in the path without doubling.






      share|improve this answer
































        17














        The bullet-proof way of Appending/Prepending



        There are a lot of considerations involved in the choice of appending versus prepending. Many of them are covered in other answers, so I will not repeat them here.



        An important point is that, even if system scripts do not use this (I wonder why)*1,
        the bullet-proof way to add a path (e.g., $HOME/bin) to the PATH environment variable is



        PATH="$PATH:+$PATH:$HOME/bin"


        for appending (instead of PATH="$PATH:$HOME/bin")
        and



        PATH="$HOME/bin$PATH:+:$PATH"


        for prepending (instead of PATH="$HOME/bin:$PATH")



        This avoids the spurious leading/trailing colon when $PATH is initially empty, which can have undesired side effects and can become a nightmare, elusive to find (this answer briefly deals with the case the awk-way).



        Explanation (from Shell Parameter Expansion):




        $parameter:+word


        If parameter is null or unset, nothing is substituted, otherwise the expansion of word is substituted.




        Thus, $PATH:+$PATH: is expanded to:
        1) nothing, if PATH is null or unset,
        2) $PATH:, if PATH is set.



        Note: This is for bash.





        *1 I have just found that scripts like devtoolset-6/enable actually use this,

        $ cat /opt/rh/devtoolset-6/enable
        # General environment variables
        export PATH=/opt/rh/devtoolset-6/root/usr/bin$PATH:+:$PATH
        ...





        share|improve this answer
































          9














          I can't speak for other distributions, but Ubuntu has a file, /etc/environment, that is the default search path for all users. Since my computer is only used by me, I put any directories that I want in my path there, unless it is a temporary addition that I put in a script.






          share|improve this answer






























            5














            For me (on Mac OS X 10.9.5), adding the path name (e.g. /mypathname) to the file /etc/paths worked very well.



            Before editing, echo $PATH returns:



            /usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin


            After editing /etc/paths and restarting the shell, the $PATH variable is appended with /pathname. Indeed, echo $PATH returns:



            /usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/mypathname


            What happened is that /mypathname has been appended to the $PATH variable.






            share|improve this answer


















            • 2





              Better to add a file to the /etc/paths.d directory than to edit the /etc/paths file itself.

              – rbrewer
              Sep 7 '16 at 20:50


















            5














            Here is my solution:



            PATH=$(echo -n $PATH | awk -v RS=: -v ORS=: '!x[$0]++' | sed "s/(.*).1/1/")


            A nice easy one liner that doesn't leave a trailing :






            share|improve this answer

























            • -bash: awk: No such file or directory -bash: sed: No such file or directory

              – davidcondrey
              Nov 21 '16 at 19:18






            • 1





              @davidcondrey - awk and sed are very common external commands. This answer provides a pure-bash way of achieving the same, so it works even in cases when awk and/or sed are not present (or their respective directories are not in the path!)

              – sancho.s
              Jan 19 '18 at 9:45


















            3














            There are some situations where it using PATH=/a/b:$PATH might be considered the "incorrect" way to add a path to PATH:



            1. Adding a path that's not actually a directory.

            2. Adding a path that's already in PATH in the same form.

            3. Adding a relative path (since the actual directory searched would change as you change the current working directory).

            4. Adding a path that's already in PATH in a different form (i.e., an alias due to using symlinks or ..).

            5. If you avoid doing 4, not moving the path to the front of PATH when it's intended to override other entries in PATH.

            This (Bash-only) function does the "right thing" in the above situations (with an exception, see below), returns error codes, and prints nice messages for humans. The error codes and messages can be disabled when they're not wanted.



            prepath() 


            The exception is that this function does not canonicalize paths added to PATH via other means, so if a non-canonical alias for a path is in PATH, this will add a duplicate. Trying to canonicalize paths already in PATH is a dicey proposition since a relative path has an obvious meaning when passed to prepath but when already in the path you don't know what the current working directory was when it was added.






            share|improve this answer
































              2














              To add a new path to the PATH environment variable:



              export PATH=$PATH:/new-path/


              For this change to be applied to every shell you open, add it to the file that the shell will source when it is invoked. In different shells this can be:



              • Bash Shell: ~/.bash_profile, ~/.bashrc or profile

              • Korn Shell: ~/.kshrc or .profile

              • Z Shell: ~/.zshrc or .zprofile

              e.g.



              # export PATH=$PATH:/root/learning/bin/
              # source ~/.bashrc
              # echo $PATH


              You can see the provided path in the above output.






              share|improve this answer





















                protected by heemayl May 10 '17 at 13:33



                Thank you for your interest in this question.
                Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).



                Would you like to answer one of these unanswered questions instead?














                11 Answers
                11






                active

                oldest

                votes








                11 Answers
                11






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes









                890














                The simple stuff



                PATH=$PATH:~/opt/bin
                PATH=~/opt/bin:$PATH


                depending on whether you want to add ~/opt/bin at the end (to be searched after all other directories, in case there is a program by the same name in multiple directories) or at the beginning (to be searched before all other directories).



                You can add multiple entries at the same time. PATH=$PATH:~/opt/bin:~/opt/node/bin or variations on the ordering work just fine. Don't put export at the beginning of the line as it has additional complications (see below under “Nots on shells other than bash”).



                If your PATH gets built by many different components, you might end up with duplicate entries. See How to add home directory path to be discovered by Unix which command? and Remove duplicate $PATH entries with awk command to avoid adding duplicates or remove them.



                Some distributions automatically put ~/bin in your PATH if it exists, by the way.



                Where to put it



                Note that ~/.bash_rc is not read by any program, and ~/.bashrc is the configuration file of interactive instances of bash. You should not define environment variables in ~/.bashrc. The right place to define environment variables such as PATH is ~/.profile (or ~/.bash_profile if you don't care about shells other than bash). See What's the difference between them and which one should I use?



                Don't put this in /etc/environment or ~/.pam_environment: these are not shell files, you can't use substitutions like $PATH in there. In these files, you can only override a variable, not add to it.



                Potential complications in some system scripts



                You don't need export if the variable is already in the environment: any change of the value of the variable is reflected in the environment.¹ PATH is pretty much always in the environment; all unix systems set it very early on (usually in the very first process, in fact).



                At login time, you can rely on PATH being already in the environment, and already containing some system directories. If you're writing a script that may be executed early while setting up some kind of virtual environment, you may need to ensure that PATH is non-empty and exported: if PATH is not set yet then something like PATH=$PATH:/some/directory would set PATH to :/some/directory, and the empty component at the beginning means the current directory (like .:/some/directory).



                if [ -z "$PATH-" ]; then export PATH=/usr/local/bin:/usr/bin:/bin; fi


                Notes on shells other than bash



                In bash, ksh and zsh, export is special syntax, and both PATH=~/opt/bin:$PATH and export PATH=~/opt/bin:$PATH do the right thing even. In other Bourne/POSIX-style shells such as dash (which is /bin/sh on many systems), export is parsed as an ordinary command, which implies two differences:




                • ~ is only parsed at the beginning of a word, except in assignments (see How to add home directory path to be discovered by Unix which command? for details);


                • $PATH outside double quotes breaks if PATH contains whitespace or [*?.

                So in shells like dash, export PATH=~/opt/bin:$PATH sets PATH to the literal string ~/opt/bin/: followed by the value of PATH up to the first space.
                PATH=~/opt/bin:$PATH (a bare assignment) doesn't require quotes and does the right thing. If you want to use export in a portable script, you need to write export PATH="$HOME/opt/bin:$PATH", or PATH=~/opt/bin:$PATH; export PATH (or PATH=$HOME/opt/bin:$PATH; export PATH for portability to even the Bourne shell that didn't accept export var=value and didn't do tilde expansion).



                ¹ This wasn't true in Bourne shells (as in the actual Bourne shell, not modern POSIX-style shells), but you're highly unlikely to encounter such old shells these days.






                share|improve this answer





























                  890














                  The simple stuff



                  PATH=$PATH:~/opt/bin
                  PATH=~/opt/bin:$PATH


                  depending on whether you want to add ~/opt/bin at the end (to be searched after all other directories, in case there is a program by the same name in multiple directories) or at the beginning (to be searched before all other directories).



                  You can add multiple entries at the same time. PATH=$PATH:~/opt/bin:~/opt/node/bin or variations on the ordering work just fine. Don't put export at the beginning of the line as it has additional complications (see below under “Nots on shells other than bash”).



                  If your PATH gets built by many different components, you might end up with duplicate entries. See How to add home directory path to be discovered by Unix which command? and Remove duplicate $PATH entries with awk command to avoid adding duplicates or remove them.



                  Some distributions automatically put ~/bin in your PATH if it exists, by the way.



                  Where to put it



                  Note that ~/.bash_rc is not read by any program, and ~/.bashrc is the configuration file of interactive instances of bash. You should not define environment variables in ~/.bashrc. The right place to define environment variables such as PATH is ~/.profile (or ~/.bash_profile if you don't care about shells other than bash). See What's the difference between them and which one should I use?



                  Don't put this in /etc/environment or ~/.pam_environment: these are not shell files, you can't use substitutions like $PATH in there. In these files, you can only override a variable, not add to it.



                  Potential complications in some system scripts



                  You don't need export if the variable is already in the environment: any change of the value of the variable is reflected in the environment.¹ PATH is pretty much always in the environment; all unix systems set it very early on (usually in the very first process, in fact).



                  At login time, you can rely on PATH being already in the environment, and already containing some system directories. If you're writing a script that may be executed early while setting up some kind of virtual environment, you may need to ensure that PATH is non-empty and exported: if PATH is not set yet then something like PATH=$PATH:/some/directory would set PATH to :/some/directory, and the empty component at the beginning means the current directory (like .:/some/directory).



                  if [ -z "$PATH-" ]; then export PATH=/usr/local/bin:/usr/bin:/bin; fi


                  Notes on shells other than bash



                  In bash, ksh and zsh, export is special syntax, and both PATH=~/opt/bin:$PATH and export PATH=~/opt/bin:$PATH do the right thing even. In other Bourne/POSIX-style shells such as dash (which is /bin/sh on many systems), export is parsed as an ordinary command, which implies two differences:




                  • ~ is only parsed at the beginning of a word, except in assignments (see How to add home directory path to be discovered by Unix which command? for details);


                  • $PATH outside double quotes breaks if PATH contains whitespace or [*?.

                  So in shells like dash, export PATH=~/opt/bin:$PATH sets PATH to the literal string ~/opt/bin/: followed by the value of PATH up to the first space.
                  PATH=~/opt/bin:$PATH (a bare assignment) doesn't require quotes and does the right thing. If you want to use export in a portable script, you need to write export PATH="$HOME/opt/bin:$PATH", or PATH=~/opt/bin:$PATH; export PATH (or PATH=$HOME/opt/bin:$PATH; export PATH for portability to even the Bourne shell that didn't accept export var=value and didn't do tilde expansion).



                  ¹ This wasn't true in Bourne shells (as in the actual Bourne shell, not modern POSIX-style shells), but you're highly unlikely to encounter such old shells these days.






                  share|improve this answer



























                    890












                    890








                    890







                    The simple stuff



                    PATH=$PATH:~/opt/bin
                    PATH=~/opt/bin:$PATH


                    depending on whether you want to add ~/opt/bin at the end (to be searched after all other directories, in case there is a program by the same name in multiple directories) or at the beginning (to be searched before all other directories).



                    You can add multiple entries at the same time. PATH=$PATH:~/opt/bin:~/opt/node/bin or variations on the ordering work just fine. Don't put export at the beginning of the line as it has additional complications (see below under “Nots on shells other than bash”).



                    If your PATH gets built by many different components, you might end up with duplicate entries. See How to add home directory path to be discovered by Unix which command? and Remove duplicate $PATH entries with awk command to avoid adding duplicates or remove them.



                    Some distributions automatically put ~/bin in your PATH if it exists, by the way.



                    Where to put it



                    Note that ~/.bash_rc is not read by any program, and ~/.bashrc is the configuration file of interactive instances of bash. You should not define environment variables in ~/.bashrc. The right place to define environment variables such as PATH is ~/.profile (or ~/.bash_profile if you don't care about shells other than bash). See What's the difference between them and which one should I use?



                    Don't put this in /etc/environment or ~/.pam_environment: these are not shell files, you can't use substitutions like $PATH in there. In these files, you can only override a variable, not add to it.



                    Potential complications in some system scripts



                    You don't need export if the variable is already in the environment: any change of the value of the variable is reflected in the environment.¹ PATH is pretty much always in the environment; all unix systems set it very early on (usually in the very first process, in fact).



                    At login time, you can rely on PATH being already in the environment, and already containing some system directories. If you're writing a script that may be executed early while setting up some kind of virtual environment, you may need to ensure that PATH is non-empty and exported: if PATH is not set yet then something like PATH=$PATH:/some/directory would set PATH to :/some/directory, and the empty component at the beginning means the current directory (like .:/some/directory).



                    if [ -z "$PATH-" ]; then export PATH=/usr/local/bin:/usr/bin:/bin; fi


                    Notes on shells other than bash



                    In bash, ksh and zsh, export is special syntax, and both PATH=~/opt/bin:$PATH and export PATH=~/opt/bin:$PATH do the right thing even. In other Bourne/POSIX-style shells such as dash (which is /bin/sh on many systems), export is parsed as an ordinary command, which implies two differences:




                    • ~ is only parsed at the beginning of a word, except in assignments (see How to add home directory path to be discovered by Unix which command? for details);


                    • $PATH outside double quotes breaks if PATH contains whitespace or [*?.

                    So in shells like dash, export PATH=~/opt/bin:$PATH sets PATH to the literal string ~/opt/bin/: followed by the value of PATH up to the first space.
                    PATH=~/opt/bin:$PATH (a bare assignment) doesn't require quotes and does the right thing. If you want to use export in a portable script, you need to write export PATH="$HOME/opt/bin:$PATH", or PATH=~/opt/bin:$PATH; export PATH (or PATH=$HOME/opt/bin:$PATH; export PATH for portability to even the Bourne shell that didn't accept export var=value and didn't do tilde expansion).



                    ¹ This wasn't true in Bourne shells (as in the actual Bourne shell, not modern POSIX-style shells), but you're highly unlikely to encounter such old shells these days.






                    share|improve this answer















                    The simple stuff



                    PATH=$PATH:~/opt/bin
                    PATH=~/opt/bin:$PATH


                    depending on whether you want to add ~/opt/bin at the end (to be searched after all other directories, in case there is a program by the same name in multiple directories) or at the beginning (to be searched before all other directories).



                    You can add multiple entries at the same time. PATH=$PATH:~/opt/bin:~/opt/node/bin or variations on the ordering work just fine. Don't put export at the beginning of the line as it has additional complications (see below under “Nots on shells other than bash”).



                    If your PATH gets built by many different components, you might end up with duplicate entries. See How to add home directory path to be discovered by Unix which command? and Remove duplicate $PATH entries with awk command to avoid adding duplicates or remove them.



                    Some distributions automatically put ~/bin in your PATH if it exists, by the way.



                    Where to put it



                    Note that ~/.bash_rc is not read by any program, and ~/.bashrc is the configuration file of interactive instances of bash. You should not define environment variables in ~/.bashrc. The right place to define environment variables such as PATH is ~/.profile (or ~/.bash_profile if you don't care about shells other than bash). See What's the difference between them and which one should I use?



                    Don't put this in /etc/environment or ~/.pam_environment: these are not shell files, you can't use substitutions like $PATH in there. In these files, you can only override a variable, not add to it.



                    Potential complications in some system scripts



                    You don't need export if the variable is already in the environment: any change of the value of the variable is reflected in the environment.¹ PATH is pretty much always in the environment; all unix systems set it very early on (usually in the very first process, in fact).



                    At login time, you can rely on PATH being already in the environment, and already containing some system directories. If you're writing a script that may be executed early while setting up some kind of virtual environment, you may need to ensure that PATH is non-empty and exported: if PATH is not set yet then something like PATH=$PATH:/some/directory would set PATH to :/some/directory, and the empty component at the beginning means the current directory (like .:/some/directory).



                    if [ -z "$PATH-" ]; then export PATH=/usr/local/bin:/usr/bin:/bin; fi


                    Notes on shells other than bash



                    In bash, ksh and zsh, export is special syntax, and both PATH=~/opt/bin:$PATH and export PATH=~/opt/bin:$PATH do the right thing even. In other Bourne/POSIX-style shells such as dash (which is /bin/sh on many systems), export is parsed as an ordinary command, which implies two differences:




                    • ~ is only parsed at the beginning of a word, except in assignments (see How to add home directory path to be discovered by Unix which command? for details);


                    • $PATH outside double quotes breaks if PATH contains whitespace or [*?.

                    So in shells like dash, export PATH=~/opt/bin:$PATH sets PATH to the literal string ~/opt/bin/: followed by the value of PATH up to the first space.
                    PATH=~/opt/bin:$PATH (a bare assignment) doesn't require quotes and does the right thing. If you want to use export in a portable script, you need to write export PATH="$HOME/opt/bin:$PATH", or PATH=~/opt/bin:$PATH; export PATH (or PATH=$HOME/opt/bin:$PATH; export PATH for portability to even the Bourne shell that didn't accept export var=value and didn't do tilde expansion).



                    ¹ This wasn't true in Bourne shells (as in the actual Bourne shell, not modern POSIX-style shells), but you're highly unlikely to encounter such old shells these days.







                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited Oct 24 '18 at 18:07

























                    answered Dec 4 '11 at 23:39









                    GillesGilles

                    535k12810811598




                    535k12810811598























                        78














                        Either way works, but they don't do the same thing: the elements of PATHare checked left to right. In your first example, executables in ~/opt/bin will have precedence over those installed, for example, in /usr/bin, which may or may not be what you want.



                        In particular, from a safety point of view, it is dangerous to add paths to the front, because if someone can gain write access to your ~/opt/bin, they can put, for example, a different ls in there, which you'd then probably use instead of /bin/ls without noticing. Now imagine the same for ssh or your browser or choice... (The same goes triply for putting . in your path.)






                        share|improve this answer


















                        • 5





                          But if you want to have your own, customized version of ls, you need to put it in a directory ahead of /bin.

                          – Barmar
                          Sep 17 '15 at 20:20






                        • 14





                          or alias ls=myls

                          – waltinator
                          Sep 18 '15 at 1:27















                        78














                        Either way works, but they don't do the same thing: the elements of PATHare checked left to right. In your first example, executables in ~/opt/bin will have precedence over those installed, for example, in /usr/bin, which may or may not be what you want.



                        In particular, from a safety point of view, it is dangerous to add paths to the front, because if someone can gain write access to your ~/opt/bin, they can put, for example, a different ls in there, which you'd then probably use instead of /bin/ls without noticing. Now imagine the same for ssh or your browser or choice... (The same goes triply for putting . in your path.)






                        share|improve this answer


















                        • 5





                          But if you want to have your own, customized version of ls, you need to put it in a directory ahead of /bin.

                          – Barmar
                          Sep 17 '15 at 20:20






                        • 14





                          or alias ls=myls

                          – waltinator
                          Sep 18 '15 at 1:27













                        78












                        78








                        78







                        Either way works, but they don't do the same thing: the elements of PATHare checked left to right. In your first example, executables in ~/opt/bin will have precedence over those installed, for example, in /usr/bin, which may or may not be what you want.



                        In particular, from a safety point of view, it is dangerous to add paths to the front, because if someone can gain write access to your ~/opt/bin, they can put, for example, a different ls in there, which you'd then probably use instead of /bin/ls without noticing. Now imagine the same for ssh or your browser or choice... (The same goes triply for putting . in your path.)






                        share|improve this answer













                        Either way works, but they don't do the same thing: the elements of PATHare checked left to right. In your first example, executables in ~/opt/bin will have precedence over those installed, for example, in /usr/bin, which may or may not be what you want.



                        In particular, from a safety point of view, it is dangerous to add paths to the front, because if someone can gain write access to your ~/opt/bin, they can put, for example, a different ls in there, which you'd then probably use instead of /bin/ls without noticing. Now imagine the same for ssh or your browser or choice... (The same goes triply for putting . in your path.)







                        share|improve this answer












                        share|improve this answer



                        share|improve this answer










                        answered Dec 4 '11 at 21:09









                        Ulrich SchwarzUlrich Schwarz

                        9,79312946




                        9,79312946







                        • 5





                          But if you want to have your own, customized version of ls, you need to put it in a directory ahead of /bin.

                          – Barmar
                          Sep 17 '15 at 20:20






                        • 14





                          or alias ls=myls

                          – waltinator
                          Sep 18 '15 at 1:27












                        • 5





                          But if you want to have your own, customized version of ls, you need to put it in a directory ahead of /bin.

                          – Barmar
                          Sep 17 '15 at 20:20






                        • 14





                          or alias ls=myls

                          – waltinator
                          Sep 18 '15 at 1:27







                        5




                        5





                        But if you want to have your own, customized version of ls, you need to put it in a directory ahead of /bin.

                        – Barmar
                        Sep 17 '15 at 20:20





                        But if you want to have your own, customized version of ls, you need to put it in a directory ahead of /bin.

                        – Barmar
                        Sep 17 '15 at 20:20




                        14




                        14





                        or alias ls=myls

                        – waltinator
                        Sep 18 '15 at 1:27





                        or alias ls=myls

                        – waltinator
                        Sep 18 '15 at 1:27











                        32














                        I'm confused by question 2 (since removed from the question since it was due to an unrelated issue):




                        What's a workable way to append more paths on different lines?
                        Initially I thought this could do the trick:





                        export PATH=$PATH:~/opt/bin
                        export PATH=$PATH:~/opt/node/bin


                        but it doesn't because the second assignment doesn't only append
                        ~/opt/node/bin, but also the whole PATH previously assigned.



                        This is a possible workaround:





                        export PATH=$PATH:~/opt/bin:~/opt/node/bin


                        but for readability I'd prefer to have one assignment for one path.




                        If you say



                        PATH=~/opt/bin


                        that's all that will be in your PATH. PATH is just an environment variable, and if you want to add to the PATH, you have to rebuild the variable with exactly the contents you want. That is, what you give as an example to question 2 is exactly what you want to do, unless I'm totally missing the point of the question.



                        I use both forms in my code. I have a generic profile that I install on every machine I work on that looks like this, to accommodate for potentially-missing directories:



                        export PATH=/opt/bin:/usr/local/bin:/usr/contrib/bin:/bin:/usr/bin:/usr/sbin:/usr/bin/X11
                        # add optional items to the path
                        for bindir in $HOME/local/bin $HOME/bin; do
                        if [ -d $bindir ]; then
                        PATH=$PATH:$bindir
                        fi
                        done





                        share|improve this answer




















                        • 2





                          You are right about the example of question 2, it works. Another PATH related issue on my system confused me. Sorry for that.

                          – Paolo
                          Dec 5 '11 at 0:59















                        32














                        I'm confused by question 2 (since removed from the question since it was due to an unrelated issue):




                        What's a workable way to append more paths on different lines?
                        Initially I thought this could do the trick:





                        export PATH=$PATH:~/opt/bin
                        export PATH=$PATH:~/opt/node/bin


                        but it doesn't because the second assignment doesn't only append
                        ~/opt/node/bin, but also the whole PATH previously assigned.



                        This is a possible workaround:





                        export PATH=$PATH:~/opt/bin:~/opt/node/bin


                        but for readability I'd prefer to have one assignment for one path.




                        If you say



                        PATH=~/opt/bin


                        that's all that will be in your PATH. PATH is just an environment variable, and if you want to add to the PATH, you have to rebuild the variable with exactly the contents you want. That is, what you give as an example to question 2 is exactly what you want to do, unless I'm totally missing the point of the question.



                        I use both forms in my code. I have a generic profile that I install on every machine I work on that looks like this, to accommodate for potentially-missing directories:



                        export PATH=/opt/bin:/usr/local/bin:/usr/contrib/bin:/bin:/usr/bin:/usr/sbin:/usr/bin/X11
                        # add optional items to the path
                        for bindir in $HOME/local/bin $HOME/bin; do
                        if [ -d $bindir ]; then
                        PATH=$PATH:$bindir
                        fi
                        done





                        share|improve this answer




















                        • 2





                          You are right about the example of question 2, it works. Another PATH related issue on my system confused me. Sorry for that.

                          – Paolo
                          Dec 5 '11 at 0:59













                        32












                        32








                        32







                        I'm confused by question 2 (since removed from the question since it was due to an unrelated issue):




                        What's a workable way to append more paths on different lines?
                        Initially I thought this could do the trick:





                        export PATH=$PATH:~/opt/bin
                        export PATH=$PATH:~/opt/node/bin


                        but it doesn't because the second assignment doesn't only append
                        ~/opt/node/bin, but also the whole PATH previously assigned.



                        This is a possible workaround:





                        export PATH=$PATH:~/opt/bin:~/opt/node/bin


                        but for readability I'd prefer to have one assignment for one path.




                        If you say



                        PATH=~/opt/bin


                        that's all that will be in your PATH. PATH is just an environment variable, and if you want to add to the PATH, you have to rebuild the variable with exactly the contents you want. That is, what you give as an example to question 2 is exactly what you want to do, unless I'm totally missing the point of the question.



                        I use both forms in my code. I have a generic profile that I install on every machine I work on that looks like this, to accommodate for potentially-missing directories:



                        export PATH=/opt/bin:/usr/local/bin:/usr/contrib/bin:/bin:/usr/bin:/usr/sbin:/usr/bin/X11
                        # add optional items to the path
                        for bindir in $HOME/local/bin $HOME/bin; do
                        if [ -d $bindir ]; then
                        PATH=$PATH:$bindir
                        fi
                        done





                        share|improve this answer















                        I'm confused by question 2 (since removed from the question since it was due to an unrelated issue):




                        What's a workable way to append more paths on different lines?
                        Initially I thought this could do the trick:





                        export PATH=$PATH:~/opt/bin
                        export PATH=$PATH:~/opt/node/bin


                        but it doesn't because the second assignment doesn't only append
                        ~/opt/node/bin, but also the whole PATH previously assigned.



                        This is a possible workaround:





                        export PATH=$PATH:~/opt/bin:~/opt/node/bin


                        but for readability I'd prefer to have one assignment for one path.




                        If you say



                        PATH=~/opt/bin


                        that's all that will be in your PATH. PATH is just an environment variable, and if you want to add to the PATH, you have to rebuild the variable with exactly the contents you want. That is, what you give as an example to question 2 is exactly what you want to do, unless I'm totally missing the point of the question.



                        I use both forms in my code. I have a generic profile that I install on every machine I work on that looks like this, to accommodate for potentially-missing directories:



                        export PATH=/opt/bin:/usr/local/bin:/usr/contrib/bin:/bin:/usr/bin:/usr/sbin:/usr/bin/X11
                        # add optional items to the path
                        for bindir in $HOME/local/bin $HOME/bin; do
                        if [ -d $bindir ]; then
                        PATH=$PATH:$bindir
                        fi
                        done






                        share|improve this answer














                        share|improve this answer



                        share|improve this answer








                        edited Jan 4 '16 at 19:17









                        Paolo

                        5,19772136




                        5,19772136










                        answered Dec 5 '11 at 0:25









                        Carl CravensCarl Cravens

                        53635




                        53635







                        • 2





                          You are right about the example of question 2, it works. Another PATH related issue on my system confused me. Sorry for that.

                          – Paolo
                          Dec 5 '11 at 0:59












                        • 2





                          You are right about the example of question 2, it works. Another PATH related issue on my system confused me. Sorry for that.

                          – Paolo
                          Dec 5 '11 at 0:59







                        2




                        2





                        You are right about the example of question 2, it works. Another PATH related issue on my system confused me. Sorry for that.

                        – Paolo
                        Dec 5 '11 at 0:59





                        You are right about the example of question 2, it works. Another PATH related issue on my system confused me. Sorry for that.

                        – Paolo
                        Dec 5 '11 at 0:59











                        24














                        Linux determines the executable search path with the $PATH environment variable. To add directory /data/myscripts to the beginning of the $PATH environment variable, use the following:



                        PATH=/data/myscripts:$PATH


                        To add that directory to the end of the path, use the following command:



                        PATH=$PATH:/data/myscripts


                        But the preceding are not sufficient because when you set an environment variable inside a script, that change is effective only within the script. There are only two ways around this limitation:



                        • If, within the script, you export the environment variable it is effective within any programs called by the script. Note that it is not effective within the program that called the script.

                        • If the program that calls the script does so by inclusion instead of calling, any environment changes in the script are effective within the calling program. Such inclusion can be done with the dot command or the source command.

                        Examples:



                        $HOME/myscript.sh
                        source $HOME/myscript.sh


                        Inclusion basically incorporates the "called" script in the "calling" script. It's like a #include in C. So it's effective inside the "calling" script or program. But of course, it's not effective in any programs or scripts called by the calling program. To make it effective all the way down the call chain, you must follow the setting of the environment variable with an export command.



                        As an example, the bash shell program incorporates the contents of file .bash_profile by inclusion. So putting the following 2 lines in .bash_profile:



                        PATH=$PATH:/data/myscripts
                        export PATH


                        effectively puts those 2 lines of code in the bash program. So within bash the $PATH variable includes $HOME/myscript.sh, and because of the export statement, any programs called by bash have the altered $PATH variable. And because any programs you run from a bash prompt are called by bash, the new path is in force for anything you run from the bash prompt.



                        The bottom line is that to add a new directory to the path, you must append or prepend the directory to the $PATH environment variable within a script included in the shell, and you must export the $PATH environment variable.



                        More information here






                        share|improve this answer



























                          24














                          Linux determines the executable search path with the $PATH environment variable. To add directory /data/myscripts to the beginning of the $PATH environment variable, use the following:



                          PATH=/data/myscripts:$PATH


                          To add that directory to the end of the path, use the following command:



                          PATH=$PATH:/data/myscripts


                          But the preceding are not sufficient because when you set an environment variable inside a script, that change is effective only within the script. There are only two ways around this limitation:



                          • If, within the script, you export the environment variable it is effective within any programs called by the script. Note that it is not effective within the program that called the script.

                          • If the program that calls the script does so by inclusion instead of calling, any environment changes in the script are effective within the calling program. Such inclusion can be done with the dot command or the source command.

                          Examples:



                          $HOME/myscript.sh
                          source $HOME/myscript.sh


                          Inclusion basically incorporates the "called" script in the "calling" script. It's like a #include in C. So it's effective inside the "calling" script or program. But of course, it's not effective in any programs or scripts called by the calling program. To make it effective all the way down the call chain, you must follow the setting of the environment variable with an export command.



                          As an example, the bash shell program incorporates the contents of file .bash_profile by inclusion. So putting the following 2 lines in .bash_profile:



                          PATH=$PATH:/data/myscripts
                          export PATH


                          effectively puts those 2 lines of code in the bash program. So within bash the $PATH variable includes $HOME/myscript.sh, and because of the export statement, any programs called by bash have the altered $PATH variable. And because any programs you run from a bash prompt are called by bash, the new path is in force for anything you run from the bash prompt.



                          The bottom line is that to add a new directory to the path, you must append or prepend the directory to the $PATH environment variable within a script included in the shell, and you must export the $PATH environment variable.



                          More information here






                          share|improve this answer

























                            24












                            24








                            24







                            Linux determines the executable search path with the $PATH environment variable. To add directory /data/myscripts to the beginning of the $PATH environment variable, use the following:



                            PATH=/data/myscripts:$PATH


                            To add that directory to the end of the path, use the following command:



                            PATH=$PATH:/data/myscripts


                            But the preceding are not sufficient because when you set an environment variable inside a script, that change is effective only within the script. There are only two ways around this limitation:



                            • If, within the script, you export the environment variable it is effective within any programs called by the script. Note that it is not effective within the program that called the script.

                            • If the program that calls the script does so by inclusion instead of calling, any environment changes in the script are effective within the calling program. Such inclusion can be done with the dot command or the source command.

                            Examples:



                            $HOME/myscript.sh
                            source $HOME/myscript.sh


                            Inclusion basically incorporates the "called" script in the "calling" script. It's like a #include in C. So it's effective inside the "calling" script or program. But of course, it's not effective in any programs or scripts called by the calling program. To make it effective all the way down the call chain, you must follow the setting of the environment variable with an export command.



                            As an example, the bash shell program incorporates the contents of file .bash_profile by inclusion. So putting the following 2 lines in .bash_profile:



                            PATH=$PATH:/data/myscripts
                            export PATH


                            effectively puts those 2 lines of code in the bash program. So within bash the $PATH variable includes $HOME/myscript.sh, and because of the export statement, any programs called by bash have the altered $PATH variable. And because any programs you run from a bash prompt are called by bash, the new path is in force for anything you run from the bash prompt.



                            The bottom line is that to add a new directory to the path, you must append or prepend the directory to the $PATH environment variable within a script included in the shell, and you must export the $PATH environment variable.



                            More information here






                            share|improve this answer













                            Linux determines the executable search path with the $PATH environment variable. To add directory /data/myscripts to the beginning of the $PATH environment variable, use the following:



                            PATH=/data/myscripts:$PATH


                            To add that directory to the end of the path, use the following command:



                            PATH=$PATH:/data/myscripts


                            But the preceding are not sufficient because when you set an environment variable inside a script, that change is effective only within the script. There are only two ways around this limitation:



                            • If, within the script, you export the environment variable it is effective within any programs called by the script. Note that it is not effective within the program that called the script.

                            • If the program that calls the script does so by inclusion instead of calling, any environment changes in the script are effective within the calling program. Such inclusion can be done with the dot command or the source command.

                            Examples:



                            $HOME/myscript.sh
                            source $HOME/myscript.sh


                            Inclusion basically incorporates the "called" script in the "calling" script. It's like a #include in C. So it's effective inside the "calling" script or program. But of course, it's not effective in any programs or scripts called by the calling program. To make it effective all the way down the call chain, you must follow the setting of the environment variable with an export command.



                            As an example, the bash shell program incorporates the contents of file .bash_profile by inclusion. So putting the following 2 lines in .bash_profile:



                            PATH=$PATH:/data/myscripts
                            export PATH


                            effectively puts those 2 lines of code in the bash program. So within bash the $PATH variable includes $HOME/myscript.sh, and because of the export statement, any programs called by bash have the altered $PATH variable. And because any programs you run from a bash prompt are called by bash, the new path is in force for anything you run from the bash prompt.



                            The bottom line is that to add a new directory to the path, you must append or prepend the directory to the $PATH environment variable within a script included in the shell, and you must export the $PATH environment variable.



                            More information here







                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered Dec 5 '11 at 0:31









                            Steve BrownSteve Brown

                            1,2931108




                            1,2931108





















                                18














                                For some time now I've kept with me two functions pathadd and pathrm that assist in adding elements to the path without the need to worry about duplications.



                                pathadd takes a single path argument and an optional after argument which if supplied will append to the PATH otherwise it prepends it.



                                In almost every situation if you're adding to the path then you're likely wanting to override anything already in the path, which is why I opt to prepend by default.



                                pathadd() :)" ; then
                                if [ "$2" = "after" ] ; then
                                PATH="$PATH:$newelement"
                                else
                                PATH="$newelement:$PATH"
                                fi
                                fi


                                pathrm() sed -e "s;(^


                                Put these in any script you wish to alter the PATH environment and you can now do.



                                pathadd "/foo/bar"
                                pathadd "/baz/bat" after
                                export PATH


                                You're guaranteed not to add to the path if it's already there. If you now want to ensure /baz/bat is at the start.



                                pathrm "/baz/bat"
                                pathadd "/baz/bat"
                                export PATH


                                Now any path can be moved to the front if it's already in the path without doubling.






                                share|improve this answer





























                                  18














                                  For some time now I've kept with me two functions pathadd and pathrm that assist in adding elements to the path without the need to worry about duplications.



                                  pathadd takes a single path argument and an optional after argument which if supplied will append to the PATH otherwise it prepends it.



                                  In almost every situation if you're adding to the path then you're likely wanting to override anything already in the path, which is why I opt to prepend by default.



                                  pathadd() :)" ; then
                                  if [ "$2" = "after" ] ; then
                                  PATH="$PATH:$newelement"
                                  else
                                  PATH="$newelement:$PATH"
                                  fi
                                  fi


                                  pathrm() sed -e "s;(^


                                  Put these in any script you wish to alter the PATH environment and you can now do.



                                  pathadd "/foo/bar"
                                  pathadd "/baz/bat" after
                                  export PATH


                                  You're guaranteed not to add to the path if it's already there. If you now want to ensure /baz/bat is at the start.



                                  pathrm "/baz/bat"
                                  pathadd "/baz/bat"
                                  export PATH


                                  Now any path can be moved to the front if it's already in the path without doubling.






                                  share|improve this answer



























                                    18












                                    18








                                    18







                                    For some time now I've kept with me two functions pathadd and pathrm that assist in adding elements to the path without the need to worry about duplications.



                                    pathadd takes a single path argument and an optional after argument which if supplied will append to the PATH otherwise it prepends it.



                                    In almost every situation if you're adding to the path then you're likely wanting to override anything already in the path, which is why I opt to prepend by default.



                                    pathadd() :)" ; then
                                    if [ "$2" = "after" ] ; then
                                    PATH="$PATH:$newelement"
                                    else
                                    PATH="$newelement:$PATH"
                                    fi
                                    fi


                                    pathrm() sed -e "s;(^


                                    Put these in any script you wish to alter the PATH environment and you can now do.



                                    pathadd "/foo/bar"
                                    pathadd "/baz/bat" after
                                    export PATH


                                    You're guaranteed not to add to the path if it's already there. If you now want to ensure /baz/bat is at the start.



                                    pathrm "/baz/bat"
                                    pathadd "/baz/bat"
                                    export PATH


                                    Now any path can be moved to the front if it's already in the path without doubling.






                                    share|improve this answer















                                    For some time now I've kept with me two functions pathadd and pathrm that assist in adding elements to the path without the need to worry about duplications.



                                    pathadd takes a single path argument and an optional after argument which if supplied will append to the PATH otherwise it prepends it.



                                    In almost every situation if you're adding to the path then you're likely wanting to override anything already in the path, which is why I opt to prepend by default.



                                    pathadd() :)" ; then
                                    if [ "$2" = "after" ] ; then
                                    PATH="$PATH:$newelement"
                                    else
                                    PATH="$newelement:$PATH"
                                    fi
                                    fi


                                    pathrm() sed -e "s;(^


                                    Put these in any script you wish to alter the PATH environment and you can now do.



                                    pathadd "/foo/bar"
                                    pathadd "/baz/bat" after
                                    export PATH


                                    You're guaranteed not to add to the path if it's already there. If you now want to ensure /baz/bat is at the start.



                                    pathrm "/baz/bat"
                                    pathadd "/baz/bat"
                                    export PATH


                                    Now any path can be moved to the front if it's already in the path without doubling.







                                    share|improve this answer














                                    share|improve this answer



                                    share|improve this answer








                                    edited May 10 '17 at 13:15









                                    Mark

                                    1032




                                    1032










                                    answered Mar 17 '16 at 23:28









                                    Brett RyanBrett Ryan

                                    28125




                                    28125





















                                        17














                                        The bullet-proof way of Appending/Prepending



                                        There are a lot of considerations involved in the choice of appending versus prepending. Many of them are covered in other answers, so I will not repeat them here.



                                        An important point is that, even if system scripts do not use this (I wonder why)*1,
                                        the bullet-proof way to add a path (e.g., $HOME/bin) to the PATH environment variable is



                                        PATH="$PATH:+$PATH:$HOME/bin"


                                        for appending (instead of PATH="$PATH:$HOME/bin")
                                        and



                                        PATH="$HOME/bin$PATH:+:$PATH"


                                        for prepending (instead of PATH="$HOME/bin:$PATH")



                                        This avoids the spurious leading/trailing colon when $PATH is initially empty, which can have undesired side effects and can become a nightmare, elusive to find (this answer briefly deals with the case the awk-way).



                                        Explanation (from Shell Parameter Expansion):




                                        $parameter:+word


                                        If parameter is null or unset, nothing is substituted, otherwise the expansion of word is substituted.




                                        Thus, $PATH:+$PATH: is expanded to:
                                        1) nothing, if PATH is null or unset,
                                        2) $PATH:, if PATH is set.



                                        Note: This is for bash.





                                        *1 I have just found that scripts like devtoolset-6/enable actually use this,

                                        $ cat /opt/rh/devtoolset-6/enable
                                        # General environment variables
                                        export PATH=/opt/rh/devtoolset-6/root/usr/bin$PATH:+:$PATH
                                        ...





                                        share|improve this answer





























                                          17














                                          The bullet-proof way of Appending/Prepending



                                          There are a lot of considerations involved in the choice of appending versus prepending. Many of them are covered in other answers, so I will not repeat them here.



                                          An important point is that, even if system scripts do not use this (I wonder why)*1,
                                          the bullet-proof way to add a path (e.g., $HOME/bin) to the PATH environment variable is



                                          PATH="$PATH:+$PATH:$HOME/bin"


                                          for appending (instead of PATH="$PATH:$HOME/bin")
                                          and



                                          PATH="$HOME/bin$PATH:+:$PATH"


                                          for prepending (instead of PATH="$HOME/bin:$PATH")



                                          This avoids the spurious leading/trailing colon when $PATH is initially empty, which can have undesired side effects and can become a nightmare, elusive to find (this answer briefly deals with the case the awk-way).



                                          Explanation (from Shell Parameter Expansion):




                                          $parameter:+word


                                          If parameter is null or unset, nothing is substituted, otherwise the expansion of word is substituted.




                                          Thus, $PATH:+$PATH: is expanded to:
                                          1) nothing, if PATH is null or unset,
                                          2) $PATH:, if PATH is set.



                                          Note: This is for bash.





                                          *1 I have just found that scripts like devtoolset-6/enable actually use this,

                                          $ cat /opt/rh/devtoolset-6/enable
                                          # General environment variables
                                          export PATH=/opt/rh/devtoolset-6/root/usr/bin$PATH:+:$PATH
                                          ...





                                          share|improve this answer



























                                            17












                                            17








                                            17







                                            The bullet-proof way of Appending/Prepending



                                            There are a lot of considerations involved in the choice of appending versus prepending. Many of them are covered in other answers, so I will not repeat them here.



                                            An important point is that, even if system scripts do not use this (I wonder why)*1,
                                            the bullet-proof way to add a path (e.g., $HOME/bin) to the PATH environment variable is



                                            PATH="$PATH:+$PATH:$HOME/bin"


                                            for appending (instead of PATH="$PATH:$HOME/bin")
                                            and



                                            PATH="$HOME/bin$PATH:+:$PATH"


                                            for prepending (instead of PATH="$HOME/bin:$PATH")



                                            This avoids the spurious leading/trailing colon when $PATH is initially empty, which can have undesired side effects and can become a nightmare, elusive to find (this answer briefly deals with the case the awk-way).



                                            Explanation (from Shell Parameter Expansion):




                                            $parameter:+word


                                            If parameter is null or unset, nothing is substituted, otherwise the expansion of word is substituted.




                                            Thus, $PATH:+$PATH: is expanded to:
                                            1) nothing, if PATH is null or unset,
                                            2) $PATH:, if PATH is set.



                                            Note: This is for bash.





                                            *1 I have just found that scripts like devtoolset-6/enable actually use this,

                                            $ cat /opt/rh/devtoolset-6/enable
                                            # General environment variables
                                            export PATH=/opt/rh/devtoolset-6/root/usr/bin$PATH:+:$PATH
                                            ...





                                            share|improve this answer















                                            The bullet-proof way of Appending/Prepending



                                            There are a lot of considerations involved in the choice of appending versus prepending. Many of them are covered in other answers, so I will not repeat them here.



                                            An important point is that, even if system scripts do not use this (I wonder why)*1,
                                            the bullet-proof way to add a path (e.g., $HOME/bin) to the PATH environment variable is



                                            PATH="$PATH:+$PATH:$HOME/bin"


                                            for appending (instead of PATH="$PATH:$HOME/bin")
                                            and



                                            PATH="$HOME/bin$PATH:+:$PATH"


                                            for prepending (instead of PATH="$HOME/bin:$PATH")



                                            This avoids the spurious leading/trailing colon when $PATH is initially empty, which can have undesired side effects and can become a nightmare, elusive to find (this answer briefly deals with the case the awk-way).



                                            Explanation (from Shell Parameter Expansion):




                                            $parameter:+word


                                            If parameter is null or unset, nothing is substituted, otherwise the expansion of word is substituted.




                                            Thus, $PATH:+$PATH: is expanded to:
                                            1) nothing, if PATH is null or unset,
                                            2) $PATH:, if PATH is set.



                                            Note: This is for bash.





                                            *1 I have just found that scripts like devtoolset-6/enable actually use this,

                                            $ cat /opt/rh/devtoolset-6/enable
                                            # General environment variables
                                            export PATH=/opt/rh/devtoolset-6/root/usr/bin$PATH:+:$PATH
                                            ...






                                            share|improve this answer














                                            share|improve this answer



                                            share|improve this answer








                                            edited Mar 2 '18 at 23:38

























                                            answered Jan 5 '18 at 16:36









                                            sancho.ssancho.s

                                            361210




                                            361210





















                                                9














                                                I can't speak for other distributions, but Ubuntu has a file, /etc/environment, that is the default search path for all users. Since my computer is only used by me, I put any directories that I want in my path there, unless it is a temporary addition that I put in a script.






                                                share|improve this answer



























                                                  9














                                                  I can't speak for other distributions, but Ubuntu has a file, /etc/environment, that is the default search path for all users. Since my computer is only used by me, I put any directories that I want in my path there, unless it is a temporary addition that I put in a script.






                                                  share|improve this answer

























                                                    9












                                                    9








                                                    9







                                                    I can't speak for other distributions, but Ubuntu has a file, /etc/environment, that is the default search path for all users. Since my computer is only used by me, I put any directories that I want in my path there, unless it is a temporary addition that I put in a script.






                                                    share|improve this answer













                                                    I can't speak for other distributions, but Ubuntu has a file, /etc/environment, that is the default search path for all users. Since my computer is only used by me, I put any directories that I want in my path there, unless it is a temporary addition that I put in a script.







                                                    share|improve this answer












                                                    share|improve this answer



                                                    share|improve this answer










                                                    answered Feb 7 '15 at 5:17









                                                    Jim BradleyJim Bradley

                                                    9111




                                                    9111





















                                                        5














                                                        For me (on Mac OS X 10.9.5), adding the path name (e.g. /mypathname) to the file /etc/paths worked very well.



                                                        Before editing, echo $PATH returns:



                                                        /usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin


                                                        After editing /etc/paths and restarting the shell, the $PATH variable is appended with /pathname. Indeed, echo $PATH returns:



                                                        /usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/mypathname


                                                        What happened is that /mypathname has been appended to the $PATH variable.






                                                        share|improve this answer


















                                                        • 2





                                                          Better to add a file to the /etc/paths.d directory than to edit the /etc/paths file itself.

                                                          – rbrewer
                                                          Sep 7 '16 at 20:50















                                                        5














                                                        For me (on Mac OS X 10.9.5), adding the path name (e.g. /mypathname) to the file /etc/paths worked very well.



                                                        Before editing, echo $PATH returns:



                                                        /usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin


                                                        After editing /etc/paths and restarting the shell, the $PATH variable is appended with /pathname. Indeed, echo $PATH returns:



                                                        /usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/mypathname


                                                        What happened is that /mypathname has been appended to the $PATH variable.






                                                        share|improve this answer


















                                                        • 2





                                                          Better to add a file to the /etc/paths.d directory than to edit the /etc/paths file itself.

                                                          – rbrewer
                                                          Sep 7 '16 at 20:50













                                                        5












                                                        5








                                                        5







                                                        For me (on Mac OS X 10.9.5), adding the path name (e.g. /mypathname) to the file /etc/paths worked very well.



                                                        Before editing, echo $PATH returns:



                                                        /usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin


                                                        After editing /etc/paths and restarting the shell, the $PATH variable is appended with /pathname. Indeed, echo $PATH returns:



                                                        /usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/mypathname


                                                        What happened is that /mypathname has been appended to the $PATH variable.






                                                        share|improve this answer













                                                        For me (on Mac OS X 10.9.5), adding the path name (e.g. /mypathname) to the file /etc/paths worked very well.



                                                        Before editing, echo $PATH returns:



                                                        /usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin


                                                        After editing /etc/paths and restarting the shell, the $PATH variable is appended with /pathname. Indeed, echo $PATH returns:



                                                        /usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/mypathname


                                                        What happened is that /mypathname has been appended to the $PATH variable.







                                                        share|improve this answer












                                                        share|improve this answer



                                                        share|improve this answer










                                                        answered Oct 27 '15 at 15:01









                                                        faelxfaelx

                                                        5111




                                                        5111







                                                        • 2





                                                          Better to add a file to the /etc/paths.d directory than to edit the /etc/paths file itself.

                                                          – rbrewer
                                                          Sep 7 '16 at 20:50












                                                        • 2





                                                          Better to add a file to the /etc/paths.d directory than to edit the /etc/paths file itself.

                                                          – rbrewer
                                                          Sep 7 '16 at 20:50







                                                        2




                                                        2





                                                        Better to add a file to the /etc/paths.d directory than to edit the /etc/paths file itself.

                                                        – rbrewer
                                                        Sep 7 '16 at 20:50





                                                        Better to add a file to the /etc/paths.d directory than to edit the /etc/paths file itself.

                                                        – rbrewer
                                                        Sep 7 '16 at 20:50











                                                        5














                                                        Here is my solution:



                                                        PATH=$(echo -n $PATH | awk -v RS=: -v ORS=: '!x[$0]++' | sed "s/(.*).1/1/")


                                                        A nice easy one liner that doesn't leave a trailing :






                                                        share|improve this answer

























                                                        • -bash: awk: No such file or directory -bash: sed: No such file or directory

                                                          – davidcondrey
                                                          Nov 21 '16 at 19:18






                                                        • 1





                                                          @davidcondrey - awk and sed are very common external commands. This answer provides a pure-bash way of achieving the same, so it works even in cases when awk and/or sed are not present (or their respective directories are not in the path!)

                                                          – sancho.s
                                                          Jan 19 '18 at 9:45















                                                        5














                                                        Here is my solution:



                                                        PATH=$(echo -n $PATH | awk -v RS=: -v ORS=: '!x[$0]++' | sed "s/(.*).1/1/")


                                                        A nice easy one liner that doesn't leave a trailing :






                                                        share|improve this answer

























                                                        • -bash: awk: No such file or directory -bash: sed: No such file or directory

                                                          – davidcondrey
                                                          Nov 21 '16 at 19:18






                                                        • 1





                                                          @davidcondrey - awk and sed are very common external commands. This answer provides a pure-bash way of achieving the same, so it works even in cases when awk and/or sed are not present (or their respective directories are not in the path!)

                                                          – sancho.s
                                                          Jan 19 '18 at 9:45













                                                        5












                                                        5








                                                        5







                                                        Here is my solution:



                                                        PATH=$(echo -n $PATH | awk -v RS=: -v ORS=: '!x[$0]++' | sed "s/(.*).1/1/")


                                                        A nice easy one liner that doesn't leave a trailing :






                                                        share|improve this answer















                                                        Here is my solution:



                                                        PATH=$(echo -n $PATH | awk -v RS=: -v ORS=: '!x[$0]++' | sed "s/(.*).1/1/")


                                                        A nice easy one liner that doesn't leave a trailing :







                                                        share|improve this answer














                                                        share|improve this answer



                                                        share|improve this answer








                                                        edited Jul 29 '17 at 9:11









                                                        simhumileco

                                                        1529




                                                        1529










                                                        answered Dec 29 '14 at 7:12









                                                        AJ.AJ.

                                                        16926




                                                        16926












                                                        • -bash: awk: No such file or directory -bash: sed: No such file or directory

                                                          – davidcondrey
                                                          Nov 21 '16 at 19:18






                                                        • 1





                                                          @davidcondrey - awk and sed are very common external commands. This answer provides a pure-bash way of achieving the same, so it works even in cases when awk and/or sed are not present (or their respective directories are not in the path!)

                                                          – sancho.s
                                                          Jan 19 '18 at 9:45

















                                                        • -bash: awk: No such file or directory -bash: sed: No such file or directory

                                                          – davidcondrey
                                                          Nov 21 '16 at 19:18






                                                        • 1





                                                          @davidcondrey - awk and sed are very common external commands. This answer provides a pure-bash way of achieving the same, so it works even in cases when awk and/or sed are not present (or their respective directories are not in the path!)

                                                          – sancho.s
                                                          Jan 19 '18 at 9:45
















                                                        -bash: awk: No such file or directory -bash: sed: No such file or directory

                                                        – davidcondrey
                                                        Nov 21 '16 at 19:18





                                                        -bash: awk: No such file or directory -bash: sed: No such file or directory

                                                        – davidcondrey
                                                        Nov 21 '16 at 19:18




                                                        1




                                                        1





                                                        @davidcondrey - awk and sed are very common external commands. This answer provides a pure-bash way of achieving the same, so it works even in cases when awk and/or sed are not present (or their respective directories are not in the path!)

                                                        – sancho.s
                                                        Jan 19 '18 at 9:45





                                                        @davidcondrey - awk and sed are very common external commands. This answer provides a pure-bash way of achieving the same, so it works even in cases when awk and/or sed are not present (or their respective directories are not in the path!)

                                                        – sancho.s
                                                        Jan 19 '18 at 9:45











                                                        3














                                                        There are some situations where it using PATH=/a/b:$PATH might be considered the "incorrect" way to add a path to PATH:



                                                        1. Adding a path that's not actually a directory.

                                                        2. Adding a path that's already in PATH in the same form.

                                                        3. Adding a relative path (since the actual directory searched would change as you change the current working directory).

                                                        4. Adding a path that's already in PATH in a different form (i.e., an alias due to using symlinks or ..).

                                                        5. If you avoid doing 4, not moving the path to the front of PATH when it's intended to override other entries in PATH.

                                                        This (Bash-only) function does the "right thing" in the above situations (with an exception, see below), returns error codes, and prints nice messages for humans. The error codes and messages can be disabled when they're not wanted.



                                                        prepath() 


                                                        The exception is that this function does not canonicalize paths added to PATH via other means, so if a non-canonical alias for a path is in PATH, this will add a duplicate. Trying to canonicalize paths already in PATH is a dicey proposition since a relative path has an obvious meaning when passed to prepath but when already in the path you don't know what the current working directory was when it was added.






                                                        share|improve this answer





























                                                          3














                                                          There are some situations where it using PATH=/a/b:$PATH might be considered the "incorrect" way to add a path to PATH:



                                                          1. Adding a path that's not actually a directory.

                                                          2. Adding a path that's already in PATH in the same form.

                                                          3. Adding a relative path (since the actual directory searched would change as you change the current working directory).

                                                          4. Adding a path that's already in PATH in a different form (i.e., an alias due to using symlinks or ..).

                                                          5. If you avoid doing 4, not moving the path to the front of PATH when it's intended to override other entries in PATH.

                                                          This (Bash-only) function does the "right thing" in the above situations (with an exception, see below), returns error codes, and prints nice messages for humans. The error codes and messages can be disabled when they're not wanted.



                                                          prepath() 


                                                          The exception is that this function does not canonicalize paths added to PATH via other means, so if a non-canonical alias for a path is in PATH, this will add a duplicate. Trying to canonicalize paths already in PATH is a dicey proposition since a relative path has an obvious meaning when passed to prepath but when already in the path you don't know what the current working directory was when it was added.






                                                          share|improve this answer



























                                                            3












                                                            3








                                                            3







                                                            There are some situations where it using PATH=/a/b:$PATH might be considered the "incorrect" way to add a path to PATH:



                                                            1. Adding a path that's not actually a directory.

                                                            2. Adding a path that's already in PATH in the same form.

                                                            3. Adding a relative path (since the actual directory searched would change as you change the current working directory).

                                                            4. Adding a path that's already in PATH in a different form (i.e., an alias due to using symlinks or ..).

                                                            5. If you avoid doing 4, not moving the path to the front of PATH when it's intended to override other entries in PATH.

                                                            This (Bash-only) function does the "right thing" in the above situations (with an exception, see below), returns error codes, and prints nice messages for humans. The error codes and messages can be disabled when they're not wanted.



                                                            prepath() 


                                                            The exception is that this function does not canonicalize paths added to PATH via other means, so if a non-canonical alias for a path is in PATH, this will add a duplicate. Trying to canonicalize paths already in PATH is a dicey proposition since a relative path has an obvious meaning when passed to prepath but when already in the path you don't know what the current working directory was when it was added.






                                                            share|improve this answer















                                                            There are some situations where it using PATH=/a/b:$PATH might be considered the "incorrect" way to add a path to PATH:



                                                            1. Adding a path that's not actually a directory.

                                                            2. Adding a path that's already in PATH in the same form.

                                                            3. Adding a relative path (since the actual directory searched would change as you change the current working directory).

                                                            4. Adding a path that's already in PATH in a different form (i.e., an alias due to using symlinks or ..).

                                                            5. If you avoid doing 4, not moving the path to the front of PATH when it's intended to override other entries in PATH.

                                                            This (Bash-only) function does the "right thing" in the above situations (with an exception, see below), returns error codes, and prints nice messages for humans. The error codes and messages can be disabled when they're not wanted.



                                                            prepath() 


                                                            The exception is that this function does not canonicalize paths added to PATH via other means, so if a non-canonical alias for a path is in PATH, this will add a duplicate. Trying to canonicalize paths already in PATH is a dicey proposition since a relative path has an obvious meaning when passed to prepath but when already in the path you don't know what the current working directory was when it was added.







                                                            share|improve this answer














                                                            share|improve this answer



                                                            share|improve this answer








                                                            edited Nov 2 '17 at 9:13

























                                                            answered Nov 2 '17 at 3:30









                                                            Curt J. SampsonCurt J. Sampson

                                                            267211




                                                            267211





















                                                                2














                                                                To add a new path to the PATH environment variable:



                                                                export PATH=$PATH:/new-path/


                                                                For this change to be applied to every shell you open, add it to the file that the shell will source when it is invoked. In different shells this can be:



                                                                • Bash Shell: ~/.bash_profile, ~/.bashrc or profile

                                                                • Korn Shell: ~/.kshrc or .profile

                                                                • Z Shell: ~/.zshrc or .zprofile

                                                                e.g.



                                                                # export PATH=$PATH:/root/learning/bin/
                                                                # source ~/.bashrc
                                                                # echo $PATH


                                                                You can see the provided path in the above output.






                                                                share|improve this answer



























                                                                  2














                                                                  To add a new path to the PATH environment variable:



                                                                  export PATH=$PATH:/new-path/


                                                                  For this change to be applied to every shell you open, add it to the file that the shell will source when it is invoked. In different shells this can be:



                                                                  • Bash Shell: ~/.bash_profile, ~/.bashrc or profile

                                                                  • Korn Shell: ~/.kshrc or .profile

                                                                  • Z Shell: ~/.zshrc or .zprofile

                                                                  e.g.



                                                                  # export PATH=$PATH:/root/learning/bin/
                                                                  # source ~/.bashrc
                                                                  # echo $PATH


                                                                  You can see the provided path in the above output.






                                                                  share|improve this answer

























                                                                    2












                                                                    2








                                                                    2







                                                                    To add a new path to the PATH environment variable:



                                                                    export PATH=$PATH:/new-path/


                                                                    For this change to be applied to every shell you open, add it to the file that the shell will source when it is invoked. In different shells this can be:



                                                                    • Bash Shell: ~/.bash_profile, ~/.bashrc or profile

                                                                    • Korn Shell: ~/.kshrc or .profile

                                                                    • Z Shell: ~/.zshrc or .zprofile

                                                                    e.g.



                                                                    # export PATH=$PATH:/root/learning/bin/
                                                                    # source ~/.bashrc
                                                                    # echo $PATH


                                                                    You can see the provided path in the above output.






                                                                    share|improve this answer













                                                                    To add a new path to the PATH environment variable:



                                                                    export PATH=$PATH:/new-path/


                                                                    For this change to be applied to every shell you open, add it to the file that the shell will source when it is invoked. In different shells this can be:



                                                                    • Bash Shell: ~/.bash_profile, ~/.bashrc or profile

                                                                    • Korn Shell: ~/.kshrc or .profile

                                                                    • Z Shell: ~/.zshrc or .zprofile

                                                                    e.g.



                                                                    # export PATH=$PATH:/root/learning/bin/
                                                                    # source ~/.bashrc
                                                                    # echo $PATH


                                                                    You can see the provided path in the above output.







                                                                    share|improve this answer












                                                                    share|improve this answer



                                                                    share|improve this answer










                                                                    answered Jun 12 '17 at 10:47









                                                                    Amit24x7Amit24x7

                                                                    409218




                                                                    409218















                                                                        protected by heemayl May 10 '17 at 13:33



                                                                        Thank you for your interest in this question.
                                                                        Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).



                                                                        Would you like to answer one of these unanswered questions instead?


                                                                        Popular posts from this blog

                                                                        How to check contact read email or not when send email to Individual?

                                                                        Bahrain

                                                                        Postfix configuration issue with fips on centos 7; mailgun relay