PATH Setting for all shells of a user


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers PATH Setting for all shells of a user
# 1  
Old 12-14-2010
PATH Setting for all shells of a user

How can I modify the path variable of a particular user in all shells? I searched in this forum and as per the advice in some threads created a new file .profile in $HOME directory with the new PATH, but it did not work.
# 2  
Old 12-14-2010
Do u mean that u have changed some value in PATH variable and than u want to reflect these changes in all logged on sessions?

For this u can use export $PATH or if u have changed it in .profile than execute .profile with . command.

Code:
export PATH=$PATH:your changes

or

. /home/user/.profile

R0H0N
# 3  
Old 12-14-2010
Code:
 
export PATH=$PATH:/path/u/want

# 4  
Old 12-14-2010
My knowledge in linux is limited. My default shell is bash. If I modify the .bash_profile file and export the new path, it will be only available within my bash shell, right? What if I want the new path to be available by default in all my shells? Is there another way, rather than edit all .<shell>_profile files?
# 5  
Old 12-14-2010
If u change in .bash_profile file than it will automatically be reflected whenever any user logged in to the system with bash. No need to export PATH variable explicitly.
R0H0N
# 6  
Old 12-14-2010
Which file should I edit, so that the updated PATH will be available in all shells, say ksh and csh?
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Solaris

Is there a difference between setting a user as nologin and setting it as a role?

Trying to figure out the best method of security for oracle user accounts. In Solaris 10 they are set as regular users but have nologin set forcing the dev's to login as themselves and then su to the oracle users. In Solaris11 we have the option of making it a role because RBAC is enabled but... (1 Reply)
Discussion started by: os2mac
1 Replies

2. Solaris

FTP user Issue and /etc/shells

Hi , I am trying to create a limited ftp user for a company on Solaris 10 . (uname : 5.10 i386) I use /bin/true shell for the user ((and use ftpconfig -d and adding user in ftpaccess guestuser)) but the problem is that when I try to log in by FTP it cannot login. when I change the shell to... (4 Replies)
Discussion started by: barry1946
4 Replies

3. UNIX for Dummies Questions & Answers

Setting up a private path

Hi all, This is probably a very simple question but I couldn't even think of how to phrase it intelligently so google could tell me the answer. Basically I am a user on a server, I am not the admin and do not have root privileges. I have downloaded a bunch of programs that I need to use and... (2 Replies)
Discussion started by: DavyK1984
2 Replies

4. Homework & Coursework Questions

Problem with path and child shells

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: a) Some Unix tools are at $HOME/mytools directory. Make these tools accessible for use from any directory. b)... (2 Replies)
Discussion started by: justOne21
2 Replies

5. Shell Programming and Scripting

Appending a path in user's PATH variable

Hello Folks, I want to append a path in user's PATH variable which should be available in current session. Background Numerous persons will run a utility. Aim is to add the absolute path of the utility the first time it runs so that next runs have the PATH in env & users can directly run... (6 Replies)
Discussion started by: vibhor_agarwali
6 Replies

6. UNIX for Advanced & Expert Users

Looking for resource on setting up history callback for shells

CSH, BASH, KSH, TCSH... They're all different, and I want to know how to setup automatic history for each of them? I always use KSH myself and use ctrl-k to bringup my history. It also allows me to search my history and has vi editing. I want to be able to do the same with other shells. I... (0 Replies)
Discussion started by: srhadden
0 Replies

7. Shell Programming and Scripting

Executing Commands From Non-Standard Path (Changing user's PATH secretely???)

Hi: I have a requirement as below: I have some standard Unix commands modified and kept them in a directory say /usr/clsh/bin. For example I have a script named "ls" kept here which is modified version of "ls" (say it always gives long listing i.e. ls -l). When any user logs on and types... (2 Replies)
Discussion started by: ramesh_samane
2 Replies

8. Shell Programming and Scripting

Setting path

Hi all, I have a java command in a shell script. When i m executing the command from the prompt its working fine. But when i paste the same command in a shell script and execute the shell script it says path not found. Please help. (5 Replies)
Discussion started by: radhika03
5 Replies

9. UNIX for Dummies Questions & Answers

Setting path for GCC?

Dear all, I have downloaded the latest version of gcc --- gcc-3.3.1.tar.gz from gnu.org. My Linux distribution is Mandrake 9.0. This was how I installed it: su - passwrd: mkdir /usr/local/src cd /usr/local/src gunzip /tmp/gcc-3.3.1.tar.gz #where I downloaded the file tar xvf... (2 Replies)
Discussion started by: HOUSCOUS
2 Replies
Login or Register to Ask a Question