🐷

コマンド場所探す

2022/11/10に公開

前下記

時々コマンドを探す必要があります。

コマンド探すのコマンド

Windows

  1. CMD

    where cmd
    C:\Windows\System32\cmd.exe
    
  2. Posershell

    $ Get-Command powershell
    
    CommandType     Name                                               Version    Source
    -----------     ----                                               -------    ------
    Application     powershell.exe                                     10.0.19... C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe
    

Linux

$ where bash
/usr/bin/bash
/bin/bash

Discussion