답변:
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;}
cd
에서는 충분합니다. 불필요echo %cd%