[Bash] Reload Bash Shell without quitting

You just have to enter the command:

source ~/.bashrc

or you can use the shorter version of the command:

. ~/.bashrc

or you could use;

exec bash

does the same thing. (and easier to remember, at least for me)

exec command replaces the shell with given program, in our example, it replaces our shell with bash (with the updated configuration files)