I couldn't understand the reason for the double registration of the path :
(surly the script was executed twice).
I write (for the benefit of others) the solution I found:
(I modified the script with a condition).
---------
newpath="/opt/netbeans/java/maven/bin"
if [[ "$PATH" != *"$newpath"* ]]; then
PATH=$PATH:/opt/netbeans/java/maven/bin
export PATH
fi
if [[ "$PATH" != *"$newpath"* ]]; then
PATH=$PATH:/opt/netbeans/java/maven/bin
export PATH
fi
---------
On Wed, Mar 25, 2020 at 1:16 AM George N. White III <gnwiii@xxxxxxxxx> wrote:
_______________________________________________On Tue, 24 Mar 2020 at 19:23, Cameron Simpson <cs@xxxxxxxxxx> wrote:On 24Mar2020 17:43, Patrick Dupre <pdupre@xxxxxxx> wrote:
>This is correct.
>You add a new path to the old path. Then it duplicates the path
No, his script is correct (to do it for all users).
I expect he is running the PATH= command twice - once from
/etc/profile.d, and maybe once in his personal .profile or .bash_profile
or .bashrc.Some applications (IDE?) appear to source /etc/profile when starting,which is why we have the pathmunge function. I think this is done so youhave the same PATH whether the app is run by clicking on a menu or by startingit from a terminal.
Cameron Simpson <cs@xxxxxxxxxx
--George N. White III
users mailing list -- users@xxxxxxxxxxxxxxxxxxxxxxx
To unsubscribe send an email to users-leave@xxxxxxxxxxxxxxxxxxxxxxx
Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: https://lists.fedoraproject.org/archives/list/users@xxxxxxxxxxxxxxxxxxxxxxx
_______________________________________________ users mailing list -- users@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe send an email to users-leave@xxxxxxxxxxxxxxxxxxxxxxx Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@xxxxxxxxxxxxxxxxxxxxxxx