Question

Is there a way to find the name of the bash configuration file that is currently on use. I searched for the .profile or .bashrc but did not find them. However still I can print some of the env variables i.e $HOME, $PATH

Was it helpful?

Solution

If you are using one of these sudo su -, bash --login, ssh user@host,
these are considered as login shell,
then you might want to try

  1. /etc/profile
  2. ~/.bash_profile
  3. ~/.bash_login
  4. ~/.profile

OTHER TIPS

Environment variables are stored in the each process itself.$HOME and $PATH is stored in the bash process itself.

So,First you have to find process id of your bash process.You can use ps command to get the process id of the process. Then,

 cat /proc/your_bash_process_id/environ

I hope this will helps you.

Those files are in the user's home directory.

$HOME/.profile

$HOME/.bashrc

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top