PowerShell tiene muchos de los mismos comandos que Linux. pwd
es el comando equivalente.
Cuando escribes pwd
en Powershell, es un alias para Get-Location
.
Además de Get-Location
y sus Alias, también puede utilizar la variable automática $pwd
.
El $pwd
La variable es agradable porque tiene acceso directo a los miembros de PathInfo. Por ejemplo
$pwd.Path.PadLeft(80)
$pwd.Drive
Y si alguna vez quiere saber qué miembros hay, simplemente puede canalizar el comando\alias a 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
cmdlet debería hacer el truco
Como mencionó Thiago, puedes usar estos alias:gl
o pwd