开发者

Linux wrong path exported. How to recover ~./bashrc file

While I try to set java path on ~./bashrc file i exported like:

PATH=/usr/开发者_开发问答local/jdk1.6.0/bin
export PATH

which I guess makes all the other path missing.So it makes me any of the core command like cp not working. I am aware the default ~./bashrc file will be there on /etc/skel. But since none of the common comments working i am not able to copy it. Is there any way we can revert original ~./bashrc?


Put something like:

PATH=/your/jdk/bin/path:${PATH}
export PATH

That way, your path gets prepended to the regular PATH environment.

And simply log out and log back in to reset your environment. Or type this:

export PATH=/usr/bin:/usr/local/bin

or this

. /etc/profile

to reload a basic environment if you can't get an editor to work right now.


You can always run commands with absolute paths, like

/bin/cp /etc/skel/.bashrc .bashrc
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜