Windows 10 Ubuntu Bashでbashrcスクリプトを編集していて、スクリプトの編集中にミスをしました。 bashを開くとすぐに終了します。 bashrcを実行せずにBashを開く方法はありますか、それとも再インストールする必要がありますか?
「通常の」bashと基本的に同じ方法で、WSLのデフォルトの.bashrc
ファイルのロードをスキップできるはずです。
--norc Do not read and execute the system wide initialization file
/etc/bash.bashrc and the personal initialization file ~/.bashrc
if the Shell is interactive. This option is on by default if
the Shell is invoked as sh.
したがって、Windowsを開いてCMD.exe
を入力し、
wsl.exe -e bash --norc
インタラクティブシェルに入ったら、~/.bashrc
ファイルに加えた変更を元に戻すことができます。