¿Windows PowerShell equivalente a Unix / Linux `pwd`?

30

En seguimiento a la pregunta cmd.exe , ¿cuál es el equivalente de PowerShell echo %cd%o Linux / Unix pwd?

madriguera
fuente
en cmd solo cdes suficiente. no es necesarioecho %cd%
phuclv

Respuestas:

35

PowerShell tiene muchos de los mismos comandos que Linux. pwdes el comando equivalente

Cuando escribe pwdPowershell, es un alias para Get-Location.

paradd0x
fuente
1
"eso fue fácil" .. chico qué me siento avergonzado :)
Warren
22

Además de Get-Locationy sus alias, también puede usar la variable automática $pwd.

La $pwdvariable es buena porque tiene acceso directo a los miembros de PathInfo. P.ej

$pwd.Path.PadLeft(80)
$pwd.Drive

Y si alguna vez quieres saber qué miembros hay, puedes 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;}
Rynant
fuente
¡muy genial! Necesito encontrar un buen tutorial de introducción a PowerShell
warren
1
Desplácese sobre la etiqueta Powershell en su pregunta. Haga clic en el enlace de preguntas frecuentes. Mira el segundo elemento de la lista.
EBGreen
4

Get-Location cmdlet debería hacer el truco

Como mencionó Thiago, puede usar estos alias: glopwd

Siim K
fuente
3

Es pwd. Puedes "stringificarlo" poniéndolo entre comillas. Más aún, se puede construir caminos, así: "$pwd\bin".

Ion Todirel
fuente