1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

忘れがちなWindows環境でlinuxコマンド実行方法

Last updated at Posted at 2023-08-02

概要

Windowsのコマンドプロンプトでlsコマンドを使用したい.

背景 標準ではリナックスコマンドは実行できず,`dir`コマンドを使用する必要がある.

PCをセットアップするたびにGitBashのインストールと環境変数の設定を行っている気がするが,毎回やり方を忘れるので自分がわかるやり方を記録しておく.

GitBashのインストール

こちらを参考に行う.
(2023/07更新と最新の記事っぽい)

インストールしただけではGitBashでしかlinuxコマンドを実行できません.

  • 上 コマンドプロンプト
  • 下 GitBash
    image.png

環境変数の設定

環境変数変更のために,システム環境変数の編集画面を開きます.
image.png

システムプロパティの詳細設定タブを開きます.
環境変数をクリックし,ユーザー環境変数とシステム環境変数を表示します.
今回はシステム環境変数をいじります.

環境変数には,変数を設定することができ,1つの変数に対して複数の値を割り当てることができます.

今回はPath変数にGitBashのbinフォルダの場所を割り当てます.
Pathを選択し,下記の編集をクリック
image.png

参照から新しい参照先を設定します.
GitBashのbinフォルダは標準で以下に存在します.(インストール時に変えてたら知らん)

  • C:\Program Files\Git\usr\bin
    image.png

新しくコマンドプロンプトを開いてコマンドを実行します.
image.png

成功です.

1
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?