Differences between revisions 14 and 15
Revision 14 as of 2010-08-20 12:27:03
Size: 734
Editor: rrcs-24-39-102-30
Comment: Removing keyword 'set' from title so that 'set intersection' faq will come up on !faq set
Revision 15 as of 2016-08-26 16:46:33
Size: 802
Editor: GreyCat
Comment: another choice
Deletions are marked like this. Additions are marked like this.
Line 9: Line 9:
Or:

{{{
bash --rcfile <(printf %s 'my; commands; here')
}}}

I want to launch an interactive shell that has special aliases and functions, not the ones in the user's ~/.bashrc.

Just specify a different start-up file:

bash --rcfile /my/custom/bashrc

Or:

bash --rcfile <(printf %s 'my; commands; here')

Variant question: I have a script that sets up an environment, and I want to give the user control at the end of it.

Put exec bash at the end of it to launch an interactive shell. This shell will inherit the environment (which does not include aliases, but that's OK, because aliases suck). Of course, you must also make sure that your script runs in a terminal -- otherwise, you must create one, for example, by using exec xterm -e bash.


CategoryShell

BashFAQ/023 (last edited 2016-08-31 00:32:52 by ormaaj)