PowerShell には、Linux と同じコマンドが多数あります。 pwd
同等のコマンドです。
pwd
と入力すると Powershell では、Get-Location
のエイリアスです。 .
Get-Location
に加えて とそのエイリアス、自動変数 $pwd
も使用できます .
$pwd
変数は、PathInfo メンバーに直接アクセスできるため便利です。例
$pwd.Path.PadLeft(80)
$pwd.Drive
どのメンバーが存在するか知りたい場合は、command\alias を Get-Member
にパイプするだけです。 :
PS C:\Users\your-name-here\Desktop> pwd|Get-Member
TypeName: System.Management.Automation.PathInfo
Name MemberType Definition
---- ---------- ----------
Equals Method bool Equals(System.Object obj)
GetHashCode Method int GetHashCode()
GetType Method type GetType()
ToString Method string ToString()
Drive Property System.Management.Automation.PSDriveInfo Drive {get;}
Path Property System.String Path {get;}
Provider Property System.Management.Automation.ProviderInfo Provider {get;}
ProviderPath Property System.String ProviderPath {get;}
Get-Location
コマンドレットでうまくいくはずです
Thiago が述べたように、次のエイリアスを使用できます:gl
または pwd