I need to use a "clean" shell (e.g. bash) under Linux/OSX terminal without any user configuration, but it reads config info from some files (e.g ~/.bashrc) every time it starts. I can modify the file every time I need a "clean" shell, and revert it back when I finished, but is there any easier ways to do this, for example a command?
Running bash --noprofile --norc still inherited from parent process. Based on a similar question I found that the way I interpreted this question env -i bash --norc --noprofile was what I would want.
-
9Thanks for the
env -itip! This ended up being a little too clean for me, since I just wanted to get rid of my custom settings, but I still needed the system-wide settings. This is what I ended up using:env -i bash --rcfile /etc/profile– DaoWenJul 17 '15 at 18:49 -
Great tip. The "env -i" is exactly what I needed. My bash_profile was still being read in despite the "--noprofile --norc" . Jan 24 '17 at 19:55
-
1You didn't need the argument --noprofile as it's only relevant if you have a login shell.– ChadMay 21 '17 at 8:07
-
1
-
What's the difference between
env -i bash --norc --noprofileandbash --norc --noprofile?– thcJun 25 '21 at 7:34
You can pass the --noprofile and --norc command-line options:
$ bash --noprofile --norc
You will find documentation about these options in the man page.
-
27
-
2
Use --noprofile --norc:
--noprofile
Do not read either the system-wide startup file /etc/profile or any of the personal initializa‐
tion files ~/.bash_profile, ~/.bash_login, or ~/.profile. By default, bash reads these files
when it is invoked as a login shell (see INVOCATION below).
--norc Do not read and execute the system wide initialization file /etc/bash.bashrc and the personal
initialization file ~/.bashrc if the shell is interactive. This option is on by default if the
shell is invoked as sh.
(from the manpage).
.bashrcor.bash_profilefiles that causes the shell to exit prematurely.