How do I reload .bashrc (ubuntu) without logging out and back in?
source ~/.bashrc
Related Posts
How to check/test .tar.bz archives?
First test bzip2 compression, It should output OK. bzip2 -tv FILE.tar.bz2 Next uncompress the tarball,…
Which one is better: using ; or && to execute multiple commands in one line?
Cheatsheet: A; B Run A and then B, regardless of success of A A &&…