我在安装某些软件时实际上搞砸了$PATH
变量~/.bash_profile
。而不是使用
export PATH=$PATH:/some/other/path
我愚蠢地做了这件事
export PATH=~/some/other/path
所以,我不能使用任何命令。如果我尝试ls
,我会得到这个;
$ ls
bash: ls: command not found...
Similar command is: 'lz'
我该如何编辑~/.bash_profile
以修复此问题?我无法使用 vim 或 emacs。
答案1
/bin/nano ~/.bashrc
或者
/usr/bin/emacs ~/.bashrc
或者
/usr/bin/vim ~/.bashrc
答案2
只需使用 emacs 或 vim 的完整路径。即。
/bin/vim .bash_profile
答案3
答案4
如果您不想使用vim
,emacs
或者nano
只需使用您最喜欢的编辑器并编辑bash_profile
位于您的主目录中的。
atom ~/.bash_profile
或者
subl ~/.bash_profile
然后在底部编辑您想要的任何内容。