107

When I make some changes to the shell/bash behavior, such as setting up an alias, is there a quick command to reinitialize the terminal window instead of closing and opening a new window?

Brad Koch
  • 127
NES
  • 33,935

8 Answers8

102

If you mean reloading your .bashrc configuration then:

source ~/.bashrc

For less typing, you can replace source with a dot: . ~/.bashrc

narkisr
  • 1,291
70

Some Addition i found in the manpage from the reset/tset command

tset reset terminal intialization

command: reset

Tset initializes terminals. Tset first determines the type of terminal that you are using. This determination is done as follows, using the first terminal type found.

an advantage seems to be, that it's independent from the used shell. also works with fish here.

So to reinitialize any terminal just do-

$ tset

OR

$ reset
sziraqui
  • 645
  • 3
  • 9
  • 17
NES
  • 33,935
14

Use exec sudo --login --user $USER.

If you also want the previously entered commands to disapper (full reset of the terminal), combine it with reset as reset; exec sudo --login --user $USER.

To keep the current working directory as well, use the following function:

reinit(){
  reset
  exec sudo --login --user "$USER" /bin/sh -c "cd '$PWD'; exec '$SHELL' -l"
}

There are many answers around the web but most don't actually work. Easy way to test is to set export SOMEVAR=42 then execute the supposedly resetting command and do echo $SOMEVAR. If it's 42, the environment was not reset.

There is also exec -c bash -l or exec env -i bash -l, but these are broken, somehow the $HOME variable is not set after this.

isarandi
  • 407
  • 4
  • 11
13

An additional option to the exec bash is that if you changed your .profile (or .bash_profile), you can do

$ exec bash --login

That will read your profile again as well. It wouldn't hurt to add the -i option as well to explicitly tell bash that this is an interactive shell, but it can normally figure that out for itself.

Kyle Macey
  • 1,679
9

You have to replace the running application/shell with a new instance. E.g. if you are using bash as your preferred shell type the following line in your command line ($ is the placeholder for the beginning of your command line):

> $ exec bash

The running application/shell is replaced by new instance of bash like starting from scratch. All your previous modification are gone.

Remark: Do not forget that your terminal application may be reprogrammed. You have to reset your terminal application manually.

Eliah Kagan
  • 119,640
0

Use the terminal's functions clear or screen.

K7AAY
  • 17,705
Nate
  • 540
  • 1
  • 8
  • 28
0

On Ubuntu at least, . ~/.profile is better than . ~/.bashrc, because the .profile file also sources the .bashrc file, and it brings in other dirs, such as ~/bin to your PATH if those dirs exist.

Gabriel Staples
  • 11,502
  • 14
  • 97
  • 142
0

your shell is an executable you can call. So if you're using bash you can call bash and if you're using something else like zsh you can just enter zsh

Rick
  • 3,727