回答:
Get-Location
およびそのエイリアスに加えて、自動変数を使用することもできます$pwd
。
$pwd
あなたはパス情報メンバーへの直接アクセスを持っているので、変数がいいです。例えば
$pwd.Path.PadLeft(80)
$pwd.Drive
そして、もしあなたがどんなメンバーがあるか知りたいなら、あなたはただコマンド\エイリアスをパイプすることができます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;}
cd
で十分です。する必要はありませんecho %cd%