Glam Prestige Journal

Bright entertainment trends with youth appeal.

How can I restart / reload the terminal in ubuntu 11.10? I'm using bash. My original reason to ask was that I had to exit and start the terminal again to get new .bashrc aliases to work, but that's fixed by reloading it with ".", now I'm just curious.

2

2 Answers

Run

bash --login

This will start a new bash login shell new loading your profile. It will inherit the other shells environment though, unless some values are overridden.

If you exit this bash, you'll be in your original shell again.

2

You can load another shell in the terminal. Type:

bash

You can put some echo commentary in .bashrc to verify. To verify all aliases type:

alias

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy