How to modify the PATH variable and make it executable?
Answers were Sorted based on User's Feedback
Answer / shailendra kumar tiwary
we can set PATH by using export PATH command.
ex:-
PATH=/opt/j2sdk1.4.2_04/bin:............
export PATH
and to make it executable we can set the same
in ".bash_profile".
To execute it ". .bash_profile"
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / swaroopa
use setenv command to set the path
eg: setenv PATH "/workingdir/"
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / kaustubh
In shell we can set any env variables in .bashrc file,
.bash_profile file in the user directory or fin /etc/bashrc
by setting variable name PATH(here)
and then export
example
PATH=$home/bin/
export PATH
Is This Answer Correct ? | 1 Yes | 1 No |
What is echo $shell?
What's the difference between scripting and coding?
What is shell scripting?
How to check if the previous command was run successfully?
Can shell script run on windows?
How do I run a shell script in powershell?
How will you print the login names of all users on a system?
What are the types of script?
In shell scripting if text is surrounded by single quotes what does it denotes?
What language is bash?
How to debug the problems encountered in the shell script/program?
How to make userdefined variables to available for all other shells?