1
4

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.

PowerShell Tips

Last updated at Posted at 2022-02-27

環境変数PATHを表示

PS> $env:Path

which コマンドの代わり

コマンドレット

python の場所を調べる場合

PS> Get-Command python | Format-List

(略)
PS> gcm python | fl

プロファイルの場所を確認

PS> $profile

プロファイルに登録

上述のコマンドレットを which 関数として登録する

function which ($cmd) {
  Get-Command $cmd | Format-List
}

which コマンドが使用可能になる

PS> which python
1
4
0

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
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?