いくつかのソフトウェアをインストールしているときに、実際に$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は使えません。
/bin/nano ~/.bashrc
または
/usr/bin/emacs ~/.bashrc
または
/usr/bin/vim ~/.bashrc
Emacsまたはvimへのフルパスを使用するだけです。すなわち。
/bin/vim .bash_profile
vim
、emacs
、またはnano
を使用したくない場合は、お気に入りのエディターを使用して、ホームディレクトリにあるbash_profile
を編集してください。 。
atom ~/.bash_profile
または
subl ~/.bash_profile
そして、下部にあるものを編集します。