Differences between revisions 5 and 8 (spanning 3 versions)
Revision 5 as of 2008-11-09 23:01:49
Size: 280
Editor: 204
Comment: By the way, you have made the promise, to come to Eurospeedway if practical., http://braimah4.freeweb7.com/recipe642.html apple crisp or apple betty recipes, sbv, http://braimah4.freeweb7.com/recipe9
Revision 8 as of 2008-11-11 07:16:15
Size: 678
Editor: pgas
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
By the way, you have made the promise, to come to Eurospeedway if practical., http://braimah4.freeweb7.com/recipe642.html apple crisp or apple betty recipes, sbv, http://braimah4.freeweb7.com/recipe9d4.html microwave stuffed chicken breast recipes, 8P,
----
CategoryHomepage
[[Anchor(faq23)]]
== I want to launch an interactive shell that has a special set of aliases and functions, not the ones in the user's ~/.bashrc. ==

{{{
bash --rcfile /my/custom/bashrc
}}}

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 [:BashFAQ/080: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}}}.

Anchor(faq23)

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

bash --rcfile /my/custom/bashrc

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 [:BashFAQ/080: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.

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