Could someone give me the content of a fresh .bashrc ? I did not find it with Google.
Why ? Because I unfortunately ecrased it.
Could someone give me the content of a fresh .bashrc ? I did not find it with Google.
Why ? Because I unfortunately ecrased it.
There isn't a default .bash_profile
but you can get a new copy of .bashrc
from /etc/skel/.bashrc
:
cp /etc/skel/.bashrc /home/$USER/
If you meant .profile
, that's also sitting in /etc/skel
:
cp /etc/skel/.bash_profile /home/$USER/
.bash_profile
. It's not a thing (at least not on my system). We use .profile
.
– Oli
Jun 04 '15 at 08:54